uLinkShortener/next.config.ts
2025-12-09 01:51:46 +01:00

7 lines
159 B
TypeScript

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