Skip to content
This repository was archived by the owner on May 1, 2020. It is now read-only.

Commit 1128c9c

Browse files
committed
fix(webpack): fix bug with using [name] for output file name
fix bug with using [name] for output file name #724
1 parent 0bda777 commit 1128c9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module.exports = {
77
output: {
88
path: '{{BUILD}}',
99
publicPath: 'build/',
10-
filename: '[name].js',
10+
filename: process.env.IONIC_OUTPUT_JS_FILE_NAME,
1111
devtoolModuleFilenameTemplate: ionicWebpackFactory.getSourceMapperFunction(),
1212
},
1313
devtool: process.env.IONIC_SOURCE_MAP_TYPE,

0 commit comments

Comments
 (0)