Skip to content

Commit

Permalink
🐞 fix: 修复基本
Browse files Browse the repository at this point in the history
  • Loading branch information
tansincosy committed Aug 29, 2022
1 parent 5a14cb0 commit 8baf7c7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/scripts/generate_module.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ const generateModule = async () => {
if (isProduction) {
LOG_INFO("begin generate rss");
const blogConfig = getAppConfig(
"BLOG_TITLE",
"BLOG_SUBTITLE",
"BLOG_SITE_URL"
"NEXT_PUBLIC_BLOG_TITLE",
"NEXT_PUBLIC_BLOG_SUBTITLE",
"NEXT_PUBLIC_BLOG_THUMBNAIL"
);

await generateRss({
title: blogConfig.BLOG_TITLE,
subtitle: blogConfig.BLOG_SUBTITLE,
siteURL: blogConfig.BLOG_SITE_URL,
title: blogConfig.NEXT_PUBLIC_BLOG_TITLE,
subtitle: blogConfig.NEXT_PUBLIC_BLOG_SUBTITLE,
siteURL: blogConfig.NEXT_PUBLIC_BLOG_THUMBNAIL,
});
LOG_INFO("begin generate rss successfully");
LOG_INFO("begin generate search");
Expand Down

0 comments on commit 8baf7c7

Please sign in to comment.