26 lines
477 B
JavaScript
26 lines
477 B
JavaScript
|
/** @type {import('next').NextConfig} */
|
||
|
const nextConfig = {
|
||
|
reactStrictMode: true,
|
||
|
swcMinify: true,
|
||
|
experimental: {
|
||
|
instrumentationHook: true
|
||
|
},
|
||
|
modularizeImports: {
|
||
|
'@mui/icons-material': {
|
||
|
transform: '@mui/icons-material/{{member}}'
|
||
|
}
|
||
|
},
|
||
|
images: {
|
||
|
remotePatterns: [
|
||
|
{
|
||
|
protocol: 'https',
|
||
|
hostname: 'source.unsplash.com',
|
||
|
port: '',
|
||
|
pathname: '/random'
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = nextConfig
|