10 lines
No EOL
194 B
TypeScript
10 lines
No EOL
194 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
experimental: {
|
|
turbo: false, // disables Turbopack in prod builds
|
|
},
|
|
};
|
|
|
|
export default nextConfig; |