stort/next.config.mjs
2024-07-30 16:21:16 +08:00

11 lines
178 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
unoptimized: true,
},
output: "export",
reactStrictMode: true,
};
export default nextConfig;