go.mod 453 B

12345678910111213141516
  1. module github.com/google/docsy
  2. go 1.12
  3. // AUTO-GENERATED using `npm run get:hugo-modules`
  4. require (
  5. github.com/FortAwesome/Font-Awesome v0.0.0-20241216213156-af620534bfc3 // indirect
  6. github.com/twbs/bootstrap v5.3.6+incompatible // indirect
  7. )
  8. // 使用镜像预置的本地路径,避免从 GitHub 拉取(国内网络不稳定)
  9. replace (
  10. github.com/FortAwesome/Font-Awesome => /opt/fontawesome
  11. github.com/twbs/bootstrap => /opt/bootstrap
  12. )