Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
262 B
JavaScript
Raw Permalink Normal View History

2025-12-12 14:26:25 +09:00
export default {
webpack5: false,
eslint: {
ignoreDuringBuilds: true,
},
webpack(config, { defaultLoaders }) {
config.module.rules.push({
test: /\/node_modules\/@mui\//,
use: [defaultLoaders.babel],
});
return config;
},
};