Skip to content

Commit

Permalink
fix: do not bundle source maps with Opera package
Browse files Browse the repository at this point in the history
  • Loading branch information
dessant committed May 14, 2021
1 parent d4cff3c commit 187622b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webpack.config.js
Expand Up @@ -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
};

0 comments on commit 187622b

Please sign in to comment.