mirror of
https://github.com/LiuYuYang01/ThriveX-Blog.git
synced 2026-06-09 08:42:35 +08:00
15 lines
312 B
JavaScript
Executable File
15 lines
312 B
JavaScript
Executable File
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
// 关闭严格模式
|
|
reactStrictMode: false,
|
|
// 配置图片来源
|
|
images: {
|
|
domains: [
|
|
'res.liuyuyang.net',
|
|
'q1.qlogo.cn',
|
|
'bu.dusays.com',
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig; |