mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 19:01:48 +08:00
15 lines
276 B
Plaintext
15 lines
276 B
Plaintext
```js
|
|
// .storybook/main.js
|
|
|
|
module.exports = {
|
|
webpackFinal: (config) => {
|
|
config.resolve.plugins = [
|
|
...(config.resolve.plugins || []),
|
|
new TsconfigPathsPlugin({
|
|
extensions: config.resolve.extensions,
|
|
}),
|
|
];
|
|
return config;
|
|
},
|
|
};
|
|
``` |