mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:21:27 +08:00
28 lines
486 B
JavaScript
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;
|