metms_fe/next.config.ts
2026-06-06 01:02:07 +07:00

27 lines
461 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
turbopack: {
root: process.cwd(),
},
images: {
unoptimized: true,
remotePatterns: [
{
protocol: "http",
hostname: "127.0.0.1",
port: "5264",
pathname: "/**",
},
{
protocol: "http",
hostname: "localhost",
port: "5264",
pathname: "/**",
},
],
},
};
export default nextConfig;