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