Fix: dist.dev need to use production sourcemaps not development
This commit is contained in:
parent
6322bf3106
commit
9e6902abe9
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ const webpackBaseConfig = require('./webpack.base.config.js');
|
||||||
process.env.NODE_ENV = 'production';
|
process.env.NODE_ENV = 'production';
|
||||||
|
|
||||||
module.exports = merge(webpackBaseConfig, {
|
module.exports = merge(webpackBaseConfig, {
|
||||||
devtool: 'eval-source-map',
|
devtool: 'source-map',
|
||||||
|
|
||||||
entry: {
|
entry: {
|
||||||
main: './src/index.js'
|
main: './src/index.js'
|
||||||
|
|
Loading…
Add table
Reference in a new issue