Files
guilan-ace-frontend/next.config.ts
Amirhossein Khalili 42f2087b7c
Some checks failed
Frontend CI/CD / build (push) Has been cancelled
Frontend CI/CD / deploy (push) Has been cancelled
migrate to Next.js
2026-05-20 09:46:17 +03:30

26 lines
454 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "api.east-guilan-ce.ir",
},
{
protocol: "http",
hostname: "127.0.0.1",
port: "8000",
},
{
protocol: "http",
hostname: "localhost",
port: "8000",
},
],
},
};
export default nextConfig;