mirror of
https://github.com/LiuYuYang01/ThriveX-Blog.git
synced 2026-06-20 16:36:20 +08:00
16 lines
405 B
JavaScript
16 lines
405 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
// 关闭严格模式
|
|
reactStrictMode: false,
|
|
// 配置环境变量
|
|
env: {
|
|
GAODE_KEY_CODE: "455e8ada6799412070c1156c6936b7c4",
|
|
GAODE_SECURITYJS_CODE: "c8c59309d679d989a8a56461956cdd38",
|
|
},
|
|
// 配置图片来源
|
|
images: {
|
|
domains: ['blog.liuyuyang.net'],
|
|
},
|
|
};
|
|
|
|
export default nextConfig; |