Files
cstb-next/next.config.js

12 lines
197 B
JavaScript
Raw Normal View History

2024-09-20 02:28:25 +08:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
images: {
unoptimized: true,
},
output: "export",
}
module.exports = nextConfig