Some checks failed
Docker Build and Push / build-and-push (push) Failing after 2m22s
9 lines
157 B
TypeScript
9 lines
157 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
output: "standalone",
|
|
};
|
|
|
|
export default nextConfig;
|