imnya.ng/next.config.ts
2024-12-15 02:59:06 +09:00

19 lines
354 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "f.imnyang.xyz",
port: "",
pathname: "/profile/**",
},
],
},
experimental: {
optimizePackageImports: ["@chakra-ui/react"],
},
};
export default nextConfig;