Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
damoqiongqiu committed Apr 25, 2020
2 parents 8e2f3eb + 0a634a9 commit d82fc48
Show file tree
Hide file tree
Showing 8 changed files with 12,879 additions and 15,583 deletions.
15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ How to: Configure your server to work with html5Mode 这个小节里面把常见

## 主要依赖

- Angular 8.0
- PrimeNG 8.0.2
- Angular 9.1
- PrimeNG 9.0.6
- Bootstrap 3.3.7
- Echarts 4.1.0
- ngx-echarts 4.1.0
Expand Down Expand Up @@ -99,7 +99,16 @@ webpack-bundle-analyzer 使用方法:
## 学习资源

- 历次演讲中的所有 PPT 已经本项目对应的资料都在这里,您可以随意使用,https://gitee.com/mumu-osc/NiceFish/attach_files
- Angular开发者论坛在这里:http://www.ngfans.net/

以下是2018年录制的付费视频教程,现在已经过去了快2年,我把它公开出来,免费播放。虽然版本号不是最新的,但是核心的思路和用法基本相同,希望能帮助到有需要的人。

- bilibili 地址:https://www.bilibili.com/video/av87528565
- 油管地址:https://www.youtube.com/watch?v=sIa_KF0cUnE&list=PLbhC27Bf6WlmpDh_66g7Fpn8uCYG7jUn8

这是2018年录制的付费视频教程,现在已经过去了快2年,我把它公开出来,免费播放。虽然版本号不是最新的,但是核心的思路和用法基本相同,希望能帮助到有需要的人。

- bilibili 地址:https://www.bilibili.com/video/av87528565
- 油管地址:https://www.youtube.com/watch?v=sIa_KF0cUnE&list=PLbhC27Bf6WlmpDh_66g7Fpn8uCYG7jUn8

这是2018年录制的付费视频教程,现在已经过去了快2年,我把它公开出来,免费播放。虽然版本号不是最新的,但是核心的思路和用法基本相同,希望能帮助到有需要的人。

Expand Down
27 changes: 25 additions & 2 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"aot": true,
"outputPath": "dist/browser",
"index": "src/index.html",
"main": "src/main.ts",
Expand All @@ -30,6 +31,12 @@
},
"configurations": {
"mock": {
"budgets": [
{
"type": "anyComponentStyle",
"maximumWarning": "6kb"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
Expand All @@ -47,6 +54,12 @@
]
},
"production": {
"budgets": [
{
"type": "anyComponentStyle",
"maximumWarning": "6kb"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
Expand All @@ -64,6 +77,12 @@
]
},
"hmr": {
"budgets": [
{
"type": "anyComponentStyle",
"maximumWarning": "6kb"
}
],
"fileReplacements": [
{
"replace": "src/environments/environment.dev.ts",
Expand Down Expand Up @@ -138,7 +157,8 @@
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
]
],
"optimization": true
}
}
}
Expand Down Expand Up @@ -172,10 +192,13 @@
"schematics": {
"@schematics/angular:component": {
"prefix": "",
"styleext": "scss"
"style": "scss"
},
"@schematics/angular:directive": {
"prefix": ""
}
},
"cli": {
"analytics": "431dadd7-96a7-44e9-ab8e-fae5200510fc"
}
}
Loading

0 comments on commit d82fc48

Please sign in to comment.