26 lines
616 B
JavaScript
Executable File
26 lines
616 B
JavaScript
Executable File
module.exports = {
|
|
webpack: (config, options) => {
|
|
config.experiments = { asset: true };
|
|
|
|
config.module.rules.push(
|
|
{
|
|
test: /\.svg$/,
|
|
use: [{ loader: "@svgr/webpack" }]
|
|
},
|
|
{
|
|
test: /\.md$/,
|
|
type: 'asset/source'
|
|
},
|
|
{
|
|
test: /\.otf$/,
|
|
type: 'asset/resource'
|
|
},
|
|
{
|
|
resourceQuery: /raw/,
|
|
type: 'asset/source',
|
|
}
|
|
);
|
|
|
|
return config
|
|
},
|
|
} |