mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:11:06 +08:00
add support for ?raw imports in webpack5 builder
This commit is contained in:
parent
dce0047558
commit
5e1be847e6
@ -74,6 +74,13 @@ export async function createDefaultWebpackConfig(
|
||||
: 'static/media/[path][name][ext]',
|
||||
},
|
||||
},
|
||||
{
|
||||
// any imports from './some-file.md?raw' will be imported as raw string
|
||||
// see https://webpack.js.org/guides/asset-modules/#replacing-inline-loader-syntax
|
||||
// used to support import raw .md files in MDX
|
||||
resourceQuery: /raw/,
|
||||
type: 'asset/source',
|
||||
},
|
||||
],
|
||||
},
|
||||
resolve: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user