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