This commit is contained in:
tangly1024
2023-06-20 14:30:13 +08:00
parent c92fbafc39
commit 3d769996a2
3 changed files with 3 additions and 3 deletions

View File

@@ -1,2 +1,2 @@
# 环境变量 @see https://www.nextjs.cn/docs/basic-features/environment-variables
NEXT_PUBLIC_VERSION=3.15.1
NEXT_PUBLIC_VERSION=3.15.2

View File

@@ -1,6 +1,6 @@
{
"name": "notion-next",
"version": "3.15.1",
"version": "3.15.2",
"homepage": "https://github.com/tangly1024/NotionNext.git",
"license": "MIT",
"repository": {

View File

@@ -23,7 +23,7 @@ export const getLayoutByTheme = (router) => {
if (theme !== BLOG.THEME) {
return dynamic(() => import(`@/themes/${theme}/${layout}`), { ssr: true })
} else {
console.log('静态主题', layout)
// console.log('静态主题', layout)
return ThemeComponents[layout]
}
}