16 lines
339 B
TypeScript
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;
|