source: next.config.js@ 057453c

main
Last change on this file since 057453c was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 348 bytes
Line 
1module.exports = {
2 trailingSlash: true,
3 modularizeImports: {
4 '@mui/material': {
5 transform: '@mui/material/{{member}}',
6 },
7 '@mui/lab': {
8 transform: '@mui/lab/{{member}}',
9 },
10 },
11 webpack(config) {
12 config.module.rules.push({
13 test: /\.svg$/,
14 use: ['@svgr/webpack'],
15 });
16 return config;
17 },
18};
Note: See TracBrowser for help on using the repository browser.