This repository was archived by the owner on Feb 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 221
/
Copy pathmain.js
58 lines (57 loc) · 1.57 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/**
* External dependencies
*/
const path = require( 'path' );
module.exports = {
stories: [
// WooCommerce Blocks stuff (anywhere in repo!)
'../assets/js/**/stories/*.stories.@(js|jsx|ts|tsx)',
'../packages/**/stories/*.stories.@(js|jsx|ts|tsx)',
'../assets/js/**/*.mdx',
'../packages/**/*.mdx',
],
addons: [
'@storybook/addon-essentials',
'@storybook/addon-docs',
'@storybook/addon-a11y',
'@storybook/addon-links',
'storybook-addon-react-docgen',
'@storybook/addon-styling-webpack',
],
typescript: {
reactDocgen: 'react-docgen-typescript-plugin',
},
docs: {
autodocs: true,
defaultName: 'Docs',
},
features: {
babelModeV7: true,
emotionAlias: false,
},
core: {
builder: 'webpack5',
},
// webpackFinal field was added in following PR: https://github.com/woocommerce/woocommerce-blocks/pull/7514
// This fixes "storybook build issue" related to framer-motion library.
// Solution is from this commment: https://github.com/storybookjs/storybook/issues/16690#issuecomment-971579785
webpackFinal: async ( config ) => {
config.module.rules.push( {
test: /\.mjs$/,
include: /node_modules/,
type: 'javascript/auto',
} );
config.externals = [ 'react-dom/client' ];
// https://github.com/storybookjs/storybook/discussions/22650#discussioncomment-6414161
config.resolve.alias = {
...config.resolve.alias,
react: path.resolve( __dirname, '../node_modules/react' ),
'react-dom': path.resolve( __dirname, '../node_modules/react-dom' ),
};
return config;
},
framework: {
name: '@storybook/react-webpack5',
options: {},
},
};