preboot / angularjs-webpack

A complete, yet simple, starter for AngularJS using webpack
MIT License
1.71k stars 658 forks source link

sourcemap is not generated #107

Open simon998yang opened 6 years ago

simon998yang commented 6 years ago

i saw in webpack.config.js

if (isTest) { config.devtool = 'inline-source-map'; } else if (isProd) { config.devtool = 'source-map'; } else { config.devtool = 'eval-source-map'; }

But when i run 'npm run build' , I cannot find sourcemap is generated.