Files
donutbrowser/next.config.ts
T
2025-05-29 10:17:16 +04:00

13 lines
209 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
reactStrictMode: true,
output: "export",
images: {
unoptimized: true,
},
distDir: "dist",
};
export default nextConfig;