8 lines
146 B
TypeScript
8 lines
146 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
// next.config.ts
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
};
|
|
export default nextConfig;
|