chore(hugo.toml): update theme configuration to use local file instead of module for better customization and flexibility

chore(go.mod): update Go version to 1.21.3 for compatibility and potential bug fixes
This commit is contained in:
Sped0n
2023-11-04 18:36:32 +08:00
parent e045d273ad
commit cd98208074
2 changed files with 8 additions and 8 deletions

View File

@@ -18,11 +18,11 @@ enableRobotsTXT = true
# * ko (powered by Noto Sans KR)
defaultContentLanguage = 'en'
# theme as local file
# themesdir = "../.."
# theme = "bridget"
# theme as local file WARN: Set the themesdir according to your own situation !!!
themesdir = "../.."
theme = "bridget"
# theme as module
[module]
[[module.imports]]
path = "github.com/Sped0n/bridget"
# or theme as module WARN: you should also set `bundled` to true in params.toml !!!
# [module]
# [[module.imports]]
# path = "github.com/Sped0n/bridget"

2
go.mod
View File

@@ -1,3 +1,3 @@
module github.com/Sped0n/bridget
go 1.20
go 1.21.3