2025-02-25 08:02:25 -05:00
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
const nextConfig = {
|
|
|
|
reactStrictMode: true,
|
|
|
|
swcMinify: true,
|
2025-02-25 10:41:51 -05:00
|
|
|
output: 'standalone',
|
2025-02-25 08:02:25 -05:00
|
|
|
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
|