mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 18:31:08 +08:00
Resolve #8884 by transpiling acorn-jsx
This commit is contained in:
parent
8561e7b95a
commit
b28056354c
@ -44,6 +44,18 @@ export function webpack(webpackConfig: any = {}, options: any = {}) {
|
||||
...module,
|
||||
rules: [
|
||||
...(module.rules || []),
|
||||
{
|
||||
test: /\.js$/,
|
||||
include: /node_modules\/acorn-jsx/,
|
||||
use: [
|
||||
{
|
||||
loader: 'babel-loader',
|
||||
options: {
|
||||
presets: [[require.resolve('@babel/preset-env'), { modules: 'commonjs' }]],
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
test: /\.(stories|story).mdx$/,
|
||||
use: [
|
||||
|
Loading…
x
Reference in New Issue
Block a user