Skip to content

Commit 7ea851d

Browse files
committed
env changes
1 parent 37bbb8f commit 7ea851d

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/AspnetRunAngular.Web/angular.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"prefix": "app",
1111
"schematics": {
1212
"@schematics/angular:component": {
13-
"style": "scss"
13+
"style": "css"
1414
}
1515
},
1616
"architect": {
@@ -27,7 +27,7 @@
2727
"src/assets"
2828
],
2929
"styles": [
30-
"src/styles.scss"
30+
"src/styles.css"
3131
],
3232
"scripts": [],
3333
"es5BrowserSupport": true
@@ -84,7 +84,7 @@
8484
"tsConfig": "src/tsconfig.spec.json",
8585
"karmaConfig": "src/karma.conf.js",
8686
"styles": [
87-
"src/styles.scss"
87+
"src/styles.css"
8888
],
8989
"scripts": [],
9090
"assets": [

src/AspnetRunAngular.Web/src/app/app.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { SpinnerService } from './core/services/spinner.service';
55
@Component({
66
selector: 'app-root',
77
templateUrl: './app.component.html',
8-
styleUrls: ['./app.component.scss']
8+
styleUrls: ['./app.component.css']
99
})
1010
export class AppComponent implements OnInit {
1111
constructor(private router: Router, public spinnerService: SpinnerService) { }
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export const environment = {
22
production: true,
3-
apiUrl: 'http://localhost:56884/api',
3+
apiUrl: 'http://localhost:64167/api',
44
};

src/AspnetRunAngular.Web/src/environments/environment.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
export const environment = {
66
production: false,
7-
apiUrl: 'http://localhost:56884/api',
7+
apiUrl: 'http://localhost:64167/api',
88
};
99

1010
/*

0 commit comments

Comments
 (0)