Files
frontend/next.config.js

11 lines
221 B
JavaScript
Raw Permalink Normal View History

2025-07-30 02:56:32 +08:00
// next.config.js
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
domains: ['localhost'],
},
// 添加其他配置...
2025-07-30 00:16:38 +08:00
};
2025-07-30 02:56:32 +08:00
module.exports = nextConfig;