mirror of
https://github.com/snowykami/web-tools.git
synced 2025-09-01 00:36:23 +00:00
Some checks failed
Build and Push Container Image, Deploy to Host / build-and-push-and-deploy (push) Failing after 1m21s
9 lines
156 B
TypeScript
9 lines
156 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone"
|
|
/* config options here */
|
|
};
|
|
|
|
export default nextConfig;
|