mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-22 05:02:18 +08:00
9 lines
374 B
JavaScript
9 lines
374 B
JavaScript
|
const { dirname } = require('path');
|
||
|
|
||
|
// These paths need to be aliased in the manager webpack config to ensure that all
|
||
|
// code running inside the manager uses the *same* versions of each package.
|
||
|
module.exports = {
|
||
|
'@emotion/core': dirname(require.resolve('@emotion/core/package.json')),
|
||
|
'@emotion/styled': dirname(require.resolve('@emotion/styled/package.json')),
|
||
|
};
|