mirror of
https://github.com/primer/css.git
synced 2024-12-01 04:21:12 +03:00
add webpack config for sass
This commit is contained in:
parent
26f45113de
commit
8c7554a1c2
13
.storybook/webpack.config.js
Normal file
13
.storybook/webpack.config.js
Normal file
@ -0,0 +1,13 @@
|
||||
const path = require('path');
|
||||
|
||||
module.exports = {
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /\.scss$/,
|
||||
loaders: ["style-loader", "css-loader", "postcss-loader", "sass-loader"],
|
||||
include: path.resolve(__dirname, '../modules')
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user