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