This commit is contained in:
2025-10-22 03:46:30 +00:00
commit a66a3c38e2
784 changed files with 724030 additions and 0 deletions

14
next.config.mjs Normal file
View File

@@ -0,0 +1,14 @@
/** @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;