add support for ?raw imports in webpack5 builder

This commit is contained in:
Jeppe Reinhold 2023-01-25 11:22:20 +01:00
parent dce0047558
commit 5e1be847e6

View File

@ -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: {