Files
agent-bounty-protocol/apps/web/next.config.ts
2026-06-06 22:56:21 +08:00

9 lines
179 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
transpilePackages: ["@agent-bounty/contracts"],
output: "standalone",
};
export default nextConfig;