mirror of
https://github.com/Kizuren/uLinkShortener.git
synced 2025-12-21 21:16:17 +01:00
7 lines
159 B
TypeScript
7 lines
159 B
TypeScript
import type { NextConfig } from 'next';
|
|
|
|
const nextConfig: NextConfig = {
|
|
allowedDevOrigins: ['localhost', '*.marcus7i.net'],
|
|
};
|
|
|
|
export default nextConfig;
|