9 lines
165 B
TypeScript
9 lines
165 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'standalone',
|
|
// other configurations
|
|
};
|
|
|
|
export default nextConfig;
|