Files
EST-DSX/next.config.mjs
2025-09-16 16:39:48 +08:00

15 lines
328 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
// async rewrites() {
// return [
// {
// source: '/api/:path*',
// destination: 'https://wxapi.est-live.cn/api/:path*', // 本地开发服务器地址
// },
// ];
// },
};
export default nextConfig;