Files
cstb-next/next.config.ts

13 lines
212 B
TypeScript
Raw Normal View History

2024-11-11 09:50:28 +08:00
import type { NextConfig } from 'next'
const nextConfig: NextConfig = {
2024-09-20 02:28:25 +08:00
reactStrictMode: true,
images: {
unoptimized: true,
},
output: "export",
2025-03-06 11:20:21 +08:00
devIndicators: false
2024-09-20 02:28:25 +08:00
}
module.exports = nextConfig