Files
LangBot/web/next.config.ts

9 lines
153 B
TypeScript
Raw Normal View History

2025-04-30 17:36:46 +08:00
import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
/* config options here */
2025-04-30 17:36:46 +08:00
output: 'export',
};
export default nextConfig;