7 lines
129 B
TypeScript
Executable file
7 lines
129 B
TypeScript
Executable file
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
};
|
|
|
|
export default nextConfig;
|