Skip to content
Snippets Groups Projects
Verified Commit 6290ded7 authored by Eliot Berriot's avatar Eliot Berriot
Browse files

See #880: disabled eval source maps in dev to allow for keeping CSP on

parent c39cd010
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,7 @@ if (process.env.BUNDLE_ANALYZE === '1') {
}
module.exports = {
baseUrl: process.env.BASE_URL || '/front/',
productionSourceMap: false,
pages: {
embed: {
entry: 'src/embed.js',
......@@ -30,6 +31,7 @@ module.exports = {
},
configureWebpack: {
plugins: plugins,
devtool: false
},
devServer: {
disableHostCheck: true,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment