mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
fix
This commit is contained in:
parent
5c087521c3
commit
0aaa35fa19
@ -140,6 +140,14 @@ export const viteFinal = async (config: any, options: Options) => {
|
|||||||
// Use the resolvedReact preset to alias react and react-dom to either the users version or the version shipped with addon-docs
|
// Use the resolvedReact preset to alias react and react-dom to either the users version or the version shipped with addon-docs
|
||||||
const { react, reactDom, mdx } = await getResolvedReact(options);
|
const { react, reactDom, mdx } = await getResolvedReact(options);
|
||||||
|
|
||||||
|
const componentsPath = join(
|
||||||
|
dirname(require.resolve('@storybook/core/package.json')),
|
||||||
|
'dist/components'
|
||||||
|
);
|
||||||
|
const themingPath = join(
|
||||||
|
dirname(require.resolve('@storybook/core/package.json')),
|
||||||
|
'dist/theming'
|
||||||
|
);
|
||||||
const packageDeduplicationPlugin = {
|
const packageDeduplicationPlugin = {
|
||||||
name: 'storybook:package-deduplication',
|
name: 'storybook:package-deduplication',
|
||||||
enforce: 'pre',
|
enforce: 'pre',
|
||||||
@ -155,9 +163,10 @@ export const viteFinal = async (config: any, options: Options) => {
|
|||||||
* The following aliases are used to ensure a single instance of these packages are used in situations where they are duplicated
|
* The following aliases are used to ensure a single instance of these packages are used in situations where they are duplicated
|
||||||
* The packages will be duplicated by the package manager when the user has react installed with another version than 18.2.0
|
* The packages will be duplicated by the package manager when the user has react installed with another version than 18.2.0
|
||||||
*/
|
*/
|
||||||
'@storybook/core/dist/theming': dirname(require.resolve('@storybook/core/dist/theming')),
|
'@storybook/core/dist/theming': themingPath,
|
||||||
'@storybook/theming': dirname(require.resolve('@storybook/core/dist/theming')),
|
'@storybook/theming': themingPath,
|
||||||
'@storybook/components': dirname(require.resolve('@storybook/components')),
|
'@storybook/components': componentsPath,
|
||||||
|
'@storybook/core/dist/components': componentsPath,
|
||||||
'@storybook/blocks': dirname(require.resolve('@storybook/blocks')),
|
'@storybook/blocks': dirname(require.resolve('@storybook/blocks')),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -86,7 +86,13 @@ const config: StorybookConfig = {
|
|||||||
resolve: {
|
resolve: {
|
||||||
alias: {
|
alias: {
|
||||||
...(configType === 'DEVELOPMENT'
|
...(configType === 'DEVELOPMENT'
|
||||||
? { '@storybook/components': path.resolve(__dirname, '../../core/src/components') }
|
? {
|
||||||
|
'@storybook/components': path.resolve(__dirname, '../../core/src/components'),
|
||||||
|
'@storybook/core/dist/components': path.resolve(
|
||||||
|
__dirname,
|
||||||
|
'../../core/src/components'
|
||||||
|
),
|
||||||
|
}
|
||||||
: {}),
|
: {}),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user