1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-11-29 15:28:27 +09:00
whippy-edition/storybook/webpack.config.js

14 lines
220 B
JavaScript
Raw Normal View History

const path = require('path');
module.exports = {
module: {
loaders: [
{
test: /.scss$/,
loaders: ["style", "css", "sass"],
include: path.resolve(__dirname, '../')
}
]
}
}