Files
werte-next/next.config.ts
rxf 5fbfc067af Spinner an den Eingabe entfernt
mifgration.ts duchr proxy.ts ersetzt
2026-03-04 08:23:39 +01:00

12 lines
209 B
TypeScript

import type { NextConfig } from "next";
import path from "path";
const nextConfig: NextConfig = {
output: 'standalone',
turbopack: {
root: path.resolve(__dirname),
},
};
export default nextConfig;