Files
frp-panel/www/next.config.js
2024-01-14 02:28:19 +08:00

18 lines
323 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
reactStrictMode: true,
async rewrites() {
return {
fallback: [
{
source: '/api/:path*',
destination: `http://localhost:9000/api/:path*`,
},
],
}
},
}
module.exports = nextConfig