Files
frontend/next.config.js
Mikuisnotavailable c903bf5284 first save
2025-07-30 03:08:49 +08:00

11 lines
221 B
JavaScript

// next.config.js
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
domains: ['localhost'],
},
// 添加其他配置...
};
module.exports = nextConfig;