Skip to content

Commit

Permalink
fix(Templates): Fix tooling options (#8501)
Browse files Browse the repository at this point in the history
  • Loading branch information
webda2l committed Nov 16, 2020
1 parent 786809e commit cc103f1
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -7,7 +7,7 @@ module.exports = {
context: __dirname,
mode: slsw.lib.webpack.isLocal ? 'development' : 'production',
entry: slsw.lib.entries,
devtool: slsw.lib.webpack.isLocal ? 'cheap-module-eval-source-map' : 'source-map',
devtool: slsw.lib.webpack.isLocal ? 'eval-cheap-module-source-map' : 'source-map',
resolve: {
extensions: ['.mjs', '.json', '.ts'],
symlinks: false,
Expand Down

0 comments on commit cc103f1

Please sign in to comment.