kms-activation-guide/next.config.ts

9 lines
157 B
TypeScript
Raw Normal View History

2024-12-09 17:10:37 +08:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
2024-12-09 17:29:54 +08:00
output: 'standalone',
2024-12-09 17:10:37 +08:00
/* config options here */
};
export default nextConfig;