ohn/next.config.mjs
2025-03-02 19:08:32 +07:00

11 lines
178 B
JavaScript

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