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:
noviceGuru 2023-06-13 16:33:40 +02:00
parent 305b81c9b7
commit 0be8314a25
2 changed files with 9 additions and 7 deletions

View File

@ -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 -->

View File

@ -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;
},
};