1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-19 05:19:39 +02:00

chore(webpack): add source maps (#4471)

* chore(webpack): add source maps

* feat(build): fetch source maps for 3rd party libs
This commit is contained in:
Chaim Lev-Ari 2021-01-12 23:40:09 +02:00 committed by GitHub
parent 4cd468ce21
commit 486ffa5bbd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 77 additions and 1 deletions

View file

@ -19,6 +19,11 @@ module.exports = {
},
module: {
rules: [
{
test: /\.js$/,
enforce: 'pre',
use: ['source-map-loader'],
},
{
test: /\.js$/,
exclude: /node_modules/,