Skip to content
This repository was archived by the owner on Aug 29, 2024. It is now read-only.

Commit 2f51b51

Browse files
committed
Enable source comments in Sass
1 parent 987a1d8 commit 2f51b51

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

resources/assets/build/webpack.config.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,12 @@ let webpackConfig = {
8989
},
9090
},
9191
{ loader: 'resolve-url', options: { sourceMap: config.enabled.sourceMaps } },
92-
{ loader: 'sass', options: { sourceMap: config.enabled.sourceMaps } },
92+
{
93+
loader: 'sass', options: {
94+
sourceMap: config.enabled.sourceMaps,
95+
sourceComments: true
96+
}
97+
},
9398
],
9499
}),
95100
},

0 commit comments

Comments
 (0)