10 lines
217 B
TypeScript
10 lines
217 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
allowedDevOrigins: process.env.ALLOWED_DEV_ORIGINS
|
|
? process.env.ALLOWED_DEV_ORIGINS.split(",")
|
|
: [],
|
|
};
|
|
|
|
export default nextConfig;
|