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;
|