Skip to content
This repository was archived by the owner on Oct 6, 2023. It is now read-only.

Commit bf83536

Browse files
committed
Update webpack.config and add new devtools setting to speed up builds.
1 parent ab80e43 commit bf83536

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

extra-webpack.config.js

+10-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
const ArcGISPlugin = require('@arcgis/webpack-plugin');
22
/**
33
* Configuration items defined here will be appended to the end of the existing webpack config defined by the Angular CLI.
4+
*
5+
* Note: devtool setting is set for fastest build time: https://webpack.js.org/configuration/devtool/
46
*/
57
module.exports = {
6-
plugins: [new ArcGISPlugin()],
7-
node: {
8-
process: false,
9-
global: false,
10-
fs: "empty"
11-
}
12-
}
8+
plugins: [new ArcGISPlugin()],
9+
node: {
10+
process: false,
11+
global: false,
12+
fs: "empty"
13+
},
14+
devtool: 'eval'
15+
}

0 commit comments

Comments
 (0)