19 lines
374 B
TypeScript
19 lines
374 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "*.public.blob.vercel-storage.com",
|
|
},
|
|
],
|
|
},
|
|
allowedDevOrigins:
|
|
process.env.NODE_ENV === "development"
|
|
? ["flattop-depth-dropper.ngrok-free.dev"]
|
|
: [],
|
|
};
|
|
|
|
export default nextConfig;
|