最新のAngularは 'ng排出'コマンドを廃止したので、webpack.configという名前のカスタムファイルを追加してプロジェクトを開始しました:
extra-webpack.config.js
私はこのチュートリアルに従いました: https://codeburst.io/customizing-angular-cli-6-build-an-alternative-to-ng-eject-a48304cd3b21
すべてを設定しましたが、問題なく動作するようです。私の問題は、新しいファイルを設定したいことです
extra-webpack.config.js
コマンドを開始したときにのみ機能する
「npm run start:dev」
、開始時に使用したくない
「npm run start:prod」
Ifステートメントを作成して、module.exportsで環境が本番環境に設定されていないかどうかを確認しようとしましたが、environment.tsファイルから環境を収集できません。私は試してみました: './src/environments/environment'から{environment}をインポートしてください。
誰かが適切な設定で私を助けてくれますか?どうもありがとう
これが私のextra-webpack.config.jsファイルです:
'use strict';
const path = require('path'); const ForkTsCheckerWebpackPlugin =
require('fork-ts-checker-webpack-plugin');
module.exports = {
optimization: {
splitChunks: {
chunks: 'async',
minSize: 30000,
maxSize: 0,
minChunks: 1,
maxAsyncRequests: 5,
maxInitialRequests: 3,
automaticNameDelimiter: '~',
name: true,
cacheGroups: {
vendors: {
test: /[\\/]node_modules[\\/]/,
priority: -10
},
default: {
minChunks: 2,
priority: -20,
reuseExistingChunk: true
}
}
}
},
context: __dirname,
output: {
pathinfo: false
},
mode: 'development',
optimization: {
removeAvailableModules: false,
removeEmptyChunks: false,
splitChunks: false
},
module: {
rules: [
{
test: /\.ts?$/,
include: path.resolve(__dirname, 'src'),
use: [{
loader: 'ts-loader',
options: {
transpileOnly: true,
experimentalWatchApi: true,
},
}]
}
]
},
resolve: {
extensions: [ '.ts', '.js' ]
},
plugins: [
new ForkTsCheckerWebpackPlugin({
tslint: true
})
]
};
これは私のangular.jsonファイルです:
{ "$schema": "./node_modules/@angular/cli/lib/config/schema.json", "version": 1, "newProjectRoot": "projects", "projects": {
"my-portal": {
"root": "",
"sourceRoot": "src",
"projectType": "application",
"prefix": "app",
"schematics": {
"@schematics/angular:component": {
"styleext": "scss"
}
},
"architect": {
"build": {
"builder": "@angular-builders/custom-webpack:browser",
"options": {
"customWebpackConfig": {
"path": "./extra-webpack.config.js"
},
"outputPath": "dist/my-portal",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.app.json",
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/app/styles/style.scss"
],
"scripts": []
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
}
]
}
}
},
"serve": {
"builder": "@angular-builders/dev-server:generic",
"options": {
"browserTarget": "my-portal:build"
},
"configurations": {
"production": {
"browserTarget": "my-portal:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "my-portal:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "src/test.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.spec.json",
"karmaConfig": "src/karma.conf.js",
"styles": [
"src/styles.scss"
],
"scripts": [],
"assets": [
"src/favicon.ico",
"src/assets"
]
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"src/tsconfig.app.json",
"src/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
}
}
}
},
"my-portal-e2e": {
"root": "e2e/",
"projectType": "application",
"prefix": "",
"architect": {
"e2e": {
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "e2e/protractor.conf.js",
"devServerTarget": "my-portal:serve"
},
"configurations": {
"production": {
"devServerTarget": "my-portal:serve:production"
}
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": "e2e/tsconfig.e2e.json",
"exclude": [
"**/node_modules/**"
]
}
}
}
} }, "defaultProject": "my-portal" }
削除した場合、次のことに気づきました。
plugins: [
new ForkTsCheckerWebpackPlugin({
tslint: true
})
]
webpack構成から、私はそれを実行することができます
npm run start:prod
あなただけの設定を移動する必要があります
"customWebpackConfig": {
"path": "./extra-webpack.config.js"
},
そのproduction
構成用にカスタマイズするには、configurations:production
の下に
"configurations": {
"production": {
"customWebpackConfig": {
"path": "./extra-webpack.config.js"
},
"fileReplacements": [],
...
詳細: https://github.com/meltedspark/angular-builders/issues/248#issuecomment-466650709