We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb57bb7 commit a3101fcCopy full SHA for a3101fc
template/build/webpack.base.js
@@ -13,7 +13,11 @@ module.exports = {
13
output: {
14
path: _.outputPath,
15
filename: '[name].js',
16
- publicPath: config.publicPath
+ publicPath: config.publicPath,
17
+ // Point sourcemap entries to original disk location
18
+ devtoolModuleFilenameTemplate: info => path.resolve(info.absoluteResourcePath),
19
+ // Add /* filename */ comments to generated require()s in the output.
20
+ pathinfo: true
21
},
22
performance: {
23
hints: process.env.NODE_ENV === 'production' ? 'warning' : false
0 commit comments