mirror of
https://github.com/zhom/donutbrowser.git
synced 2026-04-22 20:06:18 +02:00
13 lines
209 B
TypeScript
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;
|