Files
cstb-next/next.config.ts
2024-11-11 09:50:28 +08:00

12 lines
189 B
TypeScript

import type { NextConfig } from 'next'
const nextConfig: NextConfig = {
reactStrictMode: true,
images: {
unoptimized: true,
},
output: "export",
}
module.exports = nextConfig