Files
webshop/shop/next.config.ts
DanielS 0f55e17095
All checks were successful
Staging Build / build (push) Successful in 1m43s
Enable Next.js standalone mode and simplify Dockerfile copy block
2026-06-23 00:32:08 +02:00

9 lines
155 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
cacheComponents: false,
};
export default nextConfig;