tomodachi-share/next.config.ts
2026-04-13 20:39:32 +01:00

10 lines
164 B
TypeScript

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