mirror of
https://github.com/Kizuren/uLinkShortener.git
synced 2025-12-21 13:06:19 +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;
|