/** @type {import('next').NextConfig} */ const nextConfig = { // output: 'export', // distDir: 'dist', async rewrites() { return [ { source: '/queyueapi/:path*', destination: `${process.env.NEXT_PUBLIC_HOST}/:path*`, }, { source: '/', destination: '/music/all', }, ]; }, // redirects: async () => { // return [ // { // source: '/', // destination: '/music/all', // permanent: true, // }, // ]; // }, // eslint: { // ignoreDuringBuilds: true, // ignoreBuildErrors: true, // }, }; export default nextConfig;