wagtail/client/storybook/main.js

71 wiersze
1.8 KiB
JavaScript
Czysty Wina Historia

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

module.exports = {
stories: [
'../../client/**/*.stories.mdx',
'../../client/**/*.stories.@(js|tsx)',
{
directory: '../../wagtail/admin/templates/wagtailadmin/shared/',
titlePrefix: 'Shared',
files: '**/*.stories.*',
},
'../../wagtail/**/*.stories.*',
],
addons: ['@storybook/addon-docs', '@storybook/addon-controls'],
framework: '@storybook/react',
core: {
builder: 'webpack5',
},
// Redefine Babel config to allow TypeScript class fields `declare`.
// See https://github.com/storybookjs/storybook/issues/12479.
// The resulting configuration is closer to Wagtails Webpack + TypeScript setup,
// preventing other potential issues with JS transpilation differences.
babel: async (options) => ({
...options,
plugins: [],
presets: [
['@babel/preset-typescript', { allowDeclareFields: true }],
['@babel/preset-react', { runtime: 'automatic' }],
],
}),
webpackFinal: (config) => {
/* eslint-disable no-param-reassign */
const rules = [
{
test: /\.(scss|css)$/,
use: [
'style-loader',
{
loader: 'css-loader',
options: {
url: false,
},
},
{
loader: 'postcss-loader',
options: {
postcssOptions: {
plugins: ['tailwindcss', 'autoprefixer', 'cssnano'],
},
},
},
'sass-loader',
],
},
{
test: /\.(md|html)$/,
type: 'asset/source',
},
];
config.module.rules = config.module.rules.concat(rules);
// Allow using path magic variables to reduce boilerplate in stories.
config.node = {
__filename: true,
__dirname: true,
};
return config;
},
};