8 lines
147 B
TypeScript
8 lines
147 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
allowedDevOrigins: ["*.cashlow.local"],
|
|
};
|
|
|
|
export default nextConfig;
|