metms_fe/next.config.ts
2026-05-26 16:43:42 +07:00

20 lines
325 B
TypeScript

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