Skip to content

Commit 1a9ab60

Browse files
committed
fix: prevent css minification in /dist output
This allows developers to more easily fork and customize the stylesheet to meet their own needs.
1 parent e8a3f52 commit 1a9ab60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webpack.dist.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ module.exports = {
2424
test: /\.css$/,
2525
loader: ExtractTextPlugin.extract(
2626
'style-loader',
27-
'css-loader'
27+
'css-loader?minimize=false'
2828
)
2929
},
3030
{

0 commit comments

Comments
 (0)