stort/next.config.mjs

11 lines
178 B
JavaScript
Raw Normal View History

2024-07-30 11:22:58 +08:00
/** @type {import('next').NextConfig} */
const nextConfig = {
2024-07-30 16:21:16 +08:00
images: {
unoptimized: true,
},
output: "export",
2024-07-30 11:22:58 +08:00
reactStrictMode: true,
};
export default nextConfig;