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

Commit

Permalink
fix(webpack): fix bug with using [name] for output file name
Browse files Browse the repository at this point in the history
fix bug with using [name] for output file name

#724
  • Loading branch information
danbucholtz committed Feb 8, 2017
1 parent 0bda777 commit 1128c9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = {
output: {
path: '{{BUILD}}',
publicPath: 'build/',
filename: '[name].js',
filename: process.env.IONIC_OUTPUT_JS_FILE_NAME,
devtoolModuleFilenameTemplate: ionicWebpackFactory.getSourceMapperFunction(),
},
devtool: process.env.IONIC_SOURCE_MAP_TYPE,
Expand Down

0 comments on commit 1128c9c

Please sign in to comment.