mirror of
https://github.com/snowykami/sfkm.me-next.git
synced 2025-09-03 19:06:39 +00:00
All checks were successful
Build and Push Container Image, Deploy to Host / build-and-push-and-deploy (push) Successful in 1m36s
9 lines
157 B
TypeScript
9 lines
157 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'standalone',
|
|
/* config options here */
|
|
};
|
|
|
|
export default nextConfig;
|