15 lines
328 B
JavaScript
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;
|