Files
home/Projects/kompose/news/apps/landing-page/next.config.ts

10 lines
211 B
TypeScript
Raw Normal View History

2025-10-08 10:35:48 +02:00
// To throw error if any env variable is not defined
2025-10-10 16:43:21 +02:00
import "./src/constants";
import type { NextConfig } from "next";
2025-10-08 10:35:48 +02:00
const nextConfig: NextConfig = {
2025-10-10 16:43:21 +02:00
/* config options here */
};
2025-10-08 10:35:48 +02:00
2025-10-10 16:43:21 +02:00
export default nextConfig;