Files
web/next.config.ts

19 lines
355 B
TypeScript

import type { NextConfig } from "next"
const nextConfig: NextConfig = {
poweredByHeader: false,
reactStrictMode: true,
swcMinify: true,
output: "standalone",
images: {
minimumCacheTTL: 60,
formats: ["image/webp"],
},
experimental: {
optimizeCss: true,
serverComponentsExternalPackages: [],
},
}
export default nextConfig