/** @type {import('next').NextConfig} */ const nextConfig = { // output: 'export', distDir: 'dist', async rewrites() { return [ { source: '/queyueapi/:path*', destination: `http://api.indie.cn:9012/:path*`, }, ]; }, redirects: async () => { return [ // { // source: '/', // destination: '/download', // permanent: false, // }, ]; }, eslint: { ignoreDuringBuilds: true, ignoreBuildErrors: true, }, }; export default nextConfig;