mirror of
https://github.com/zhom/donutbrowser.git
synced 2026-04-21 19:36:31 +02:00
16 lines
286 B
TypeScript
16 lines
286 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
reactStrictMode: true,
|
|
output: "export",
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
distDir: "dist",
|
|
compiler: {
|
|
removeConsole: process.env.NODE_ENV === "production",
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|