cm_bot_v2/web/next.config.ts

9 lines
144 B
TypeScript

import type { NextConfig } from "next";
const config: NextConfig = {
output: "standalone",
trailingSlash: true,
};
export default config;