|
|
@@ -114,7 +114,10 @@ module.exports = {
|
|
|
// You can exclude the *.map files from the build during deployment.
|
|
|
devtool: shouldUseSourceMap ? 'source-map' : false,
|
|
|
// In production, we only want to load the app code.
|
|
|
- entry: [paths.appIndexJs],
|
|
|
+ entry: {
|
|
|
+ index: [paths.appIndexJs],
|
|
|
+ design: [paths.appSrc + "/design.js"]
|
|
|
+ },
|
|
|
output: {
|
|
|
// The build folder.
|
|
|
path: paths.appBuild,
|
|
|
@@ -260,7 +263,7 @@ module.exports = {
|
|
|
options: {
|
|
|
formatter: require.resolve('react-dev-utils/eslintFormatter'),
|
|
|
eslintPath: require.resolve('eslint'),
|
|
|
-
|
|
|
+
|
|
|
},
|
|
|
loader: require.resolve('eslint-loader'),
|
|
|
},
|
|
|
@@ -293,7 +296,7 @@ module.exports = {
|
|
|
customize: require.resolve(
|
|
|
'babel-preset-react-app/webpack-overrides'
|
|
|
),
|
|
|
-
|
|
|
+
|
|
|
plugins: [
|
|
|
[
|
|
|
require.resolve('babel-plugin-named-asset-import'),
|
|
|
@@ -331,7 +334,7 @@ module.exports = {
|
|
|
cacheDirectory: true,
|
|
|
// Save disk space when time isn't as important
|
|
|
cacheCompression: true,
|
|
|
-
|
|
|
+
|
|
|
// If an error happens in a package, it's possible to be
|
|
|
// because it was compiled. Thus, we don't want the browser
|
|
|
// debugger to show the original code. Instead, the code
|
|
|
@@ -428,6 +431,24 @@ module.exports = {
|
|
|
// Generates an `index.html` file with the <script> injected.
|
|
|
new HtmlWebpackPlugin({
|
|
|
inject: true,
|
|
|
+ chunks: ["index"],
|
|
|
+ template: paths.appHtml,
|
|
|
+ minify: {
|
|
|
+ removeComments: true,
|
|
|
+ collapseWhitespace: true,
|
|
|
+ removeRedundantAttributes: true,
|
|
|
+ useShortDoctype: true,
|
|
|
+ removeEmptyAttributes: true,
|
|
|
+ removeStyleLinkTypeAttributes: true,
|
|
|
+ keepClosingSlash: true,
|
|
|
+ minifyJS: true,
|
|
|
+ minifyCSS: true,
|
|
|
+ minifyURLs: true,
|
|
|
+ },
|
|
|
+ }),
|
|
|
+ new HtmlWebpackPlugin({
|
|
|
+ inject: true,
|
|
|
+ chunks: ["design"],
|
|
|
template: paths.appHtml,
|
|
|
minify: {
|
|
|
removeComments: true,
|