Skip to content
This repository was archived by the owner on Jan 20, 2022. It is now read-only.

Commit 69d2d4d

Browse files
committed
Add sourceMaps: false to webpack.config.js
1 parent 58e51d2 commit 69d2d4d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

webpack.config.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,12 @@ const settings = {
7575
localIdentName: dev('[name]--[local]--[hash:base64:5]').prod('[hash:base64]')
7676
}
7777
},
78-
'postcss-loader' // has separate config nearby
78+
{
79+
loader: 'postcss-loader',
80+
options: {
81+
sourceMap: false
82+
}
83+
} // has separate config nearby
7984
]
8085
},
8186
]

0 commit comments

Comments
 (0)