Files
todo/services/nextjs/next.config.ts
Mayne0213 1b02190ab1 REFACTOR(config): change env path
- Change environment path
- Update configuration
2025-12-06 22:07:24 +09:00

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;