chore: 优化前端构建方式

This commit is contained in:
2025-12-20 22:01:51 +08:00
parent e0822528a7
commit 93688a0e4e
3 changed files with 31 additions and 21 deletions

View File

@@ -2,6 +2,7 @@ import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
output: 'standalone',
reactStrictMode: true,
devIndicators: {
position: 'bottom-right',
@@ -16,7 +17,7 @@ const nextConfig: NextConfig = {
},
images: {
remotePatterns: [new URL('https://tone-personal.oss-cn-chengdu.aliyuncs.com/**')]
}
},
};
export default nextConfig;