Fix svg related errors with storybook

This commit is contained in:
Gabe Kangas 2022-05-27 13:44:38 -07:00
parent db184c74dd
commit bf8a7e9f1a
No known key found for this signature in database
GPG Key ID: 9A56337728BC81EA

View File

@ -19,6 +19,16 @@ module.exports = {
'addon-screen-reader',
],
webpackFinal: async (config, { configType }) => {
// @see https://github.com/storybookjs/storybook/issues/9070
const fileLoaderRule = config.module.rules.find(rule => rule.test && rule.test.test('.svg'));
fileLoaderRule.exclude = /\.svg$/;
// https://www.npmjs.com/package/@svgr/webpack
config.module.rules.push({
test: /\.svg$/,
use: ['@svgr/webpack'],
});
config.module.rules.push({
test: /\.less$/,
use: [