portfolio/next.config.ts
2026-02-02 18:55:07 +01:00

16 lines
339 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
// assetPrefix:
// process.env.NODE_ENV === "production"
// ? "https://cdn.georgew.dev"
// : undefined,
// images: {
// loader: "imgix",
// path: "https://cdn.georgew.dev/",
// },
};
export default nextConfig;