uLinkShortener/next.config.ts
2025-07-11 00:59:08 +02:00

7 lines
159 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
allowedDevOrigins: ['localhost', '*.marcus7i.net'],
};
export default nextConfig;