mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 04:11:06 +08:00
Description imporved, type correction applied to JS file
Description for aliasing configuration imporved, and type correction that was added to TS example, was added to JS version for accuracy and consistency.
This commit is contained in:
parent
305b81c9b7
commit
0be8314a25
@ -128,7 +128,7 @@ Storybook's default Webpack configuration provides support for most project setu
|
||||
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
While if you only want to add an import path, like `@` import which is used in `NextJS 13` default setup, you can use the following solution without adding a package:
|
||||
However, if you're working with a framework that provides a default aliasing configuration (e.g., Next.js, Nuxt) and you want to configure Storybook to use the same aliases, you may not need to install any additional packages. Instead, you can extend the default configuration of Storybook to use the same aliases provided by the framework. For example, to set up an alias for the `@` import path, you can add the following to your `.storybook/main.js|ts` file:
|
||||
|
||||
<!-- prettier-ignore-start -->
|
||||
|
||||
|
@ -8,12 +8,14 @@ export default {
|
||||
framework: '@storybook/your-framework',
|
||||
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|ts|tsx)'],
|
||||
webpackFinal: async (config) => {
|
||||
config.resolve.plugins = [
|
||||
...(config.resolve.plugins || []),
|
||||
new TsconfigPathsPlugin({
|
||||
extensions: config.resolve.extensions,
|
||||
}),
|
||||
];
|
||||
if(config.resolve){
|
||||
config.resolve.plugins = [
|
||||
...(config.resolve.plugins || []),
|
||||
new TsconfigPathsPlugin({
|
||||
extensions: config.resolve.extensions,
|
||||
}),
|
||||
];
|
||||
}
|
||||
return config;
|
||||
},
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user