Files
cima.it/frontend/next.config.ts
T

40 lines
924 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* Enable SVG imports as React components via @svgr/webpack */
turbopack: {
rules: {
'*.svg': {
loaders: ['@svgr/webpack'],
as: '*.js',
},
},
},
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
use: ['@svgr/webpack'],
});
return config;
},
/* Image optimization for better performance */
images: {
formats: ["image/avif", "image/webp"],
deviceSizes: [640, 750, 828, 1080, 1200, 1920, 2048, 3840],
imageSizes: [16, 32, 48, 64, 96, 128, 256, 384],
minimumCacheTTL: 31536000, // 1 year
dangerouslyAllowSVG: true,
contentSecurityPolicy: "default-src 'self'; script-src 'none'; sandbox;",
},
/* Compression and optimization */
compress: true,
/* Generate static pages early */
reactStrictMode: true,
};
export default nextConfig;