Files

11 lines
174 B
TypeScript
Raw Permalink Normal View History

2026-06-28 04:27:21 +08:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
turbopack: {
root: process.cwd(),
},
};
export default nextConfig;