From 571de065507f011deeb78696eb7b032583ef48be Mon Sep 17 00:00:00 2001 From: kazoottt Date: Wed, 6 Mar 2024 19:28:08 +0800 Subject: [PATCH] style: format blog.config.js --- blog.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog.config.js b/blog.config.js index d75d9d7f..644d4862 100644 --- a/blog.config.js +++ b/blog.config.js @@ -463,7 +463,7 @@ const BLOG = { ENABLE_CACHE: process.env.ENABLE_CACHE || process.env.npm_lifecycle_event === 'build' || process.env.npm_lifecycle_event === 'export', // 在打包过程中默认开启缓存,开发或运行时开启此功能意义不大。 isProd: process.env.VERCEL_ENV === 'production', // distinguish between development and production environment (ref: https://vercel.com/docs/environment-variables#system-environment-variables) isProd: process.env.VERCEL_ENV === 'production' // distinguish between development and production environment (ref: https://vercel.com/docs/environment-variables#system-environment-variables) BUNDLE_ANALYZER: process.env.ANALYZE === 'true' || false, // 是否展示编译依赖内容与大小 - VERSION: process.env.NEXT_PUBLIC_VERSION, // 版本号 + VERSION: process.env.NEXT_PUBLIC_VERSION // 版本号 } module.exports = BLOG