flowstate/next.config.ts
2026-08-01 12:13:57 +02:00

15 lines
270 B
TypeScript

import path from "path";
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone" as const,
trailingSlash: true,
images: {
unoptimized: true,
},
turbopack: {
root: path.resolve(__dirname),
},
};
export default nextConfig;