forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
28 lines (26 loc) · 897 Bytes
/
webpack.config.js
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
'use strict';
const createWebpackConfig = require('@rushstack/heft-web-rig/profiles/app/webpack-base.config');
module.exports = function createConfig(env, argv) {
return createWebpackConfig({
env: env,
argv: argv,
projectRoot: __dirname,
// Documentation: https://webpack.js.org/configuration/
configOverride: {
resolve: {
alias: {
// Use the bundled library
'heft-web-rig-library-tutorial':
'heft-web-rig-library-tutorial/dist/heft-web-rig-library-tutorial.js'
}
},
performance: {
hints: env.production ? 'error' : false
// This specifies the bundle size limit that will trigger Webpack's warning saying:
// "The following entrypoint(s) combined asset size exceeds the recommended limit."
// maxEntrypointSize: 500000,
// maxAssetSize: 500000
}
}
});
};