Files
web/next.config.ts

19 lines
355 B
TypeScript
Raw Normal View History

2025-03-19 15:49:18 +08:00
import type { NextConfig } from "next"
2025-03-04 10:10:35 +08:00
const nextConfig: NextConfig = {
poweredByHeader: false,
reactStrictMode: true,
swcMinify: true,
output: "standalone",
images: {
minimumCacheTTL: 60,
formats: ["image/webp"],
},
experimental: {
optimizeCss: true,
serverComponentsExternalPackages: [],
},
2025-03-19 15:49:18 +08:00
}
2025-03-04 10:10:35 +08:00
2025-03-19 15:49:18 +08:00
export default nextConfig