fix: do not bundle source maps with Opera package

pull/321/head
dessant 3 years ago
parent d4cff3c513
commit 187622b83a

@ -92,6 +92,6 @@ module.exports = {
modules: [path.resolve(__dirname, 'src'), 'node_modules'],
extensions: ['.js', '.json', '.css', '.scss', '.vue']
},
devtool: isProduction ? 'source-map' : false,
devtool: isProduction && targetEnv !== 'opera' ? 'source-map' : false,
plugins
};

Loading…
Cancel
Save