11 lines
176 B
TypeScript
11 lines
176 B
TypeScript
// next.config.ts
|
|
|
|
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'standalone',
|
|
/* config options here */
|
|
};
|
|
|
|
export default nextConfig;
|