1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00
metamask-extension/.storybook/webpack.config.js

30 lines
531 B
JavaScript
Raw Normal View History

2018-05-03 19:51:15 +02:00
const path = require('path')
module.exports = {
module: {
strictExportPresence: true,
2018-05-03 19:51:15 +02:00
rules: [
{
test: /\.scss$/,
loaders: [
'style-loader',
{
loader: 'css-loader',
2018-05-03 19:51:15 +02:00
options: {
import: false,
url: false,
2018-05-03 19:51:15 +02:00
},
},
'resolve-url-loader',
{
loader: 'sass-loader',
options: {
sourceMap: true,
},
},
],
},
2018-05-03 19:51:15 +02:00
],
},
}