Files
agent-bounty-protocol/apps/web/next.config.ts
OG T 0e0d763a42
All checks were successful
CI and Production Smoke / smoke (push) Successful in 6s
fix: prepare vibework propose brand-domain proxy
2026-06-11 14:25:16 +08:00

12 lines
306 B
TypeScript

import type { NextConfig } from "next";
const assetPrefix = process.env.NEXT_PUBLIC_ASSET_PREFIX?.trim().replace(/\/$/, "");
const nextConfig: NextConfig = {
transpilePackages: ["@agent-bounty/contracts"],
output: "standalone",
assetPrefix: assetPrefix || undefined,
};
export default nextConfig;