mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:31:06 +08:00
Addon-docs: Restore IE11 compat on Windows by transpiling correctly acorn-jsx for this OS (#8884)
This commit is contained in:
parent
19068044bc
commit
cd278d8cd0
@ -1,5 +1,6 @@
|
|||||||
/* eslint-disable import/no-extraneous-dependencies */
|
/* eslint-disable import/no-extraneous-dependencies */
|
||||||
import createCompiler from '@storybook/addon-docs/mdx-compiler-plugin';
|
import createCompiler from '@storybook/addon-docs/mdx-compiler-plugin';
|
||||||
|
import path from 'path';
|
||||||
import remarkSlug from 'remark-slug';
|
import remarkSlug from 'remark-slug';
|
||||||
import remarkExternalLinks from 'remark-external-links';
|
import remarkExternalLinks from 'remark-external-links';
|
||||||
|
|
||||||
@ -52,7 +53,7 @@ export function webpack(webpackConfig: any = {}, options: any = {}) {
|
|||||||
...(module.rules || []),
|
...(module.rules || []),
|
||||||
{
|
{
|
||||||
test: /\.js$/,
|
test: /\.js$/,
|
||||||
include: /node_modules\/acorn-jsx/,
|
include: path.join(__dirname, '../../../../../node_modules/acorn-jsx'),
|
||||||
use: [
|
use: [
|
||||||
{
|
{
|
||||||
loader: 'babel-loader',
|
loader: 'babel-loader',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user