일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 |
- decompiler
- Apache Lucene
- asp.net
- 자바스크립트
- Java
- STS
- Bootstrap
- 컬럼명
- jsp
- 웹 서비스
- Redirect
- 안드로이드
- Android
- 자바
- Maven
- Web Service
- MS-SQL
- C#
- WebView
- SpringSource Tool Suite
- TextBox
- html
- 이클립스
- MANTIS
- 웹뷰
- MSsql
- javascript
- Eclipse
- scrollView
- varags
- Today
- Total
목록2021/02/26 (2)
bboks.net™
방법1: angular.json에 추가 angular.json의 serve 항목에 proxy config 파일 설정 "serve":{ "builder":"@angular-devkit/build-angular:dev-server", "options":{ "browserTarget":"app:build", "proxyConfig":"./proxy.conf.json" }, "configurations":{ "production":{ "browserTarget":"app:build:production" }, "ci":{ "progress":false } } } 방법2: 실행 시 proxy config 지정 ionic serve -- --proxy-config proxy.conf.json
{ ... "projects": { "SkipTestsFromStart": { "projectType": "application", "schematics": { "@schematics/angular:component": { "style": "scss", "skipTests": true }, "@schematics/angular:class": { "skipTests": true }, "@schematics/angular:directive": { "skipTests": true }, "@schematics/angular:guard": { "skipTests": true }, "@schematics/angular:module": { "skipTests": true }, "@schematics/angular:p..