Files
golunteer/client/next.config.ts
2025-01-03 23:10:30 +00:00

9 lines
152 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
output: "export"
};
export default nextConfig;