/** @type {import('next').NextConfig} */ const nextConfig = { output: 'export', basePath: '', trailingSlash: true, // 添加这一行 images: { unoptimized: true, remotePatterns: [ { protocol: 'https', hostname: '**', }, { protocol: 'http', hostname: 'localhost', }, ], }, } module.exports = nextConfig