- Move services/nextjs/ to nextjs/ - Move Dockerfile.prod to Dockerfile at root - Remove deploy/ folder (K8s manifests moved to K3S-HOME/web-apps) - Remove .gitea/ workflows - Update GitHub Actions for new structure - Remove develop branch triggers
13 lines
305 B
TypeScript
13 lines
305 B
TypeScript
import type { NextConfig } from "next";
|
|
import { config } from "dotenv";
|
|
import { resolve } from "path";
|
|
|
|
// Load .env file from the parent directory (todo folder)
|
|
config({ path: resolve(__dirname, "../../.env") });
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'standalone',
|
|
};
|
|
|
|
export default nextConfig;
|