Skip to content

Commit

Permalink
Merge pull request tangly1024#2996 from tangly1024/feat/minify
Browse files Browse the repository at this point in the history
Feat/minify
  • Loading branch information
tangly1024 authored Nov 19, 2024
2 parents b186d8d + 92107c4 commit 6ac88c9
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 6 deletions.
16 changes: 12 additions & 4 deletions components/ExternalPlugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@ import { isBrowser, loadExternalResource } from '@/lib/utils'
import dynamic from 'next/dynamic'
import { useRouter } from 'next/router'
import { useEffect } from 'react'
import Coze from './Coze'
import { GlobalStyle } from './GlobalStyle'
import { initGoogleAdsense } from './GoogleAdsense'
import LA51 from './LA51'
import TianLiGPT from './TianliGPT'

import WebWhiz from './Webwhiz'

/**
Expand Down Expand Up @@ -148,7 +146,7 @@ const ExternalPlugin = props => {
{!CAN_COPY && <DisableCopy />}
{WEB_WHIZ_ENABLED && <WebWhiz />}
{AD_WWADS_BLOCK_DETECT && <AdBlockDetect />}
{TIANLI_KEY && <TianLiGPT />}
{TIANLI_KEY && <TianliGPT />}
<VConsole />
{ENABLE_NPROGRSS && <LoadingProgress />}
<AosAnimation />
Expand Down Expand Up @@ -427,4 +425,14 @@ const AosAnimation = dynamic(() => import('@/components/AOSAnimation'), {
ssr: false
})

const Coze = dynamic(() => import('@/components/Coze'), {
ssr: false
})
const LA51 = dynamic(() => import('@/components/LA51'), {
ssr: false
})
const TianliGPT = dynamic(() => import('@/components/TianliGPT'), {
ssr: false
})

export default ExternalPlugin
8 changes: 6 additions & 2 deletions lib/db/getSiteData.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ export async function getGlobalData({
const siteIds = pageId?.split(',') || []
let data = EmptyData(pageId)

if (BLOG.BUNDLE_ANALYZER) {
return data
}

try {
for (let index = 0; index < siteIds.length; index++) {
const siteId = siteIds[index]
Expand Down Expand Up @@ -97,10 +101,10 @@ const EmptyData = pageId => {
id: 1,
title: `无法获取Notion数据,请检查Notion_ID: \n 当前 ${pageId}`,
summary:
'访问文档获取帮助→ https://tangly1024.com/article/vercel-deploy-notion-next',
'访问文档获取帮助 → https://docs.tangly1024.com/article/vercel-deploy-notion-next',
status: 'Published',
type: 'Post',
slug: '13a171332816461db29d50e9f575b00d',
slug: 'oops',
publishDay: '2024-11-13',
pageCoverThumbnail: BLOG.HOME_BANNER_IMAGE,
date: {
Expand Down

0 comments on commit 6ac88c9

Please sign in to comment.