Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 959c31c

Browse filesBrowse files
committed
fix(webpack): don't use html-plugin in test
fixes #2374
1 parent 7781910 commit 959c31c
Copy full SHA for 959c31c

File tree

1 file changed

+10
-8
lines changed
Filter options

1 file changed

+10
-8
lines changed

‎templates/app/webpack.make.js

Copy file name to clipboardExpand all lines: templates/app/webpack.make.js
+10-8
Original file line numberDiff line numberDiff line change
@@ -321,15 +321,17 @@ module.exports = function makeWebpackConfig(options) {
321321
// Skip rendering index.html in test mode
322322
// Reference: https://github.com/ampedandwired/html-webpack-plugin
323323
// Render index.html
324-
let htmlConfig = {
325-
template: 'client/_index.html',
326-
filename: '../client/index.html',
327-
alwaysWriteToDisk: true
324+
if(!TEST) {
325+
let htmlConfig = {
326+
template: 'client/_index.html',
327+
filename: '../client/index.html',
328+
alwaysWriteToDisk: true
329+
}
330+
config.plugins.push(
331+
new HtmlWebpackPlugin(htmlConfig),
332+
new HtmlWebpackHarddiskPlugin()
333+
);
328334
}
329-
config.plugins.push(
330-
new HtmlWebpackPlugin(htmlConfig),
331-
new HtmlWebpackHarddiskPlugin()
332-
);
333335

334336
// Add build specific plugins
335337
if(BUILD) {

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.