portfolio/next.config.ts
GeorgeWebberley f09b403282
All checks were successful
ci/woodpecker/release/woodpecker Pipeline was successful
Added favicon, bunny cdn and site name
2026-02-03 14:52:42 +01:00

16 lines
317 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
assetPrefix:
process.env.NODE_ENV === "production"
? "https://georgew.b-cdn.net"
: undefined,
images: {
domains: ["georgew.b-cdn.net"],
loader: "default",
},
};
export default nextConfig;