mirror of
https://github.com/VaalaCat/frp-panel.git
synced 2025-12-24 11:51:06 +08:00
18 lines
323 B
JavaScript
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
|