Skip to content

Commit 3c0a31e

Browse files
committed
Remove minification for template
Fixes preboot#1
1 parent a1991df commit 3c0a31e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

webpack.make.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,7 @@ module.exports = function makeWebpackConfig (options) {
185185
config.plugins.push(
186186
new HtmlWebpackPlugin({
187187
template: './src/index.html',
188-
inject: 'body',
189-
minify: BUILD
188+
inject: 'body'
190189
})
191190
)
192191
}
@@ -224,4 +223,4 @@ module.exports = function makeWebpackConfig (options) {
224223
};
225224

226225
return config;
227-
};
226+
};

0 commit comments

Comments
 (0)