storybook/docs/.storybook/webpack.config.js
2018-03-17 16:41:31 -07:00

28 lines
486 B
JavaScript

const config = {
module: {
rules: [
{
test: /\.css$/,
use: ['style-loader', 'css-loader'],
},
{
test: /\.yml$/,
use: ['json-loader', 'yaml-loader'],
},
{
test: /\.(jpg|png|gif|eot|ttf|woff|woff2)$/,
use: ['file-loader'],
},
{
test: /\.svg$/,
loader: 'svg-url-loader',
options: {
noquotes: true,
},
},
],
},
};
module.exports = config;