|
před 1 týdnem | |
---|---|---|
.. | ||
.vscode | před 1 týdnem | |
assets | před 1 týdnem | |
content | před 1 týdnem | |
layouts | před 1 týdnem | |
.gitignore | před 1 týdnem | |
LICENSE | před 1 týdnem | |
README.md | před 1 týdnem | |
go.mod | před 1 týdnem | |
hugo.toml | před 1 týdnem | |
netlify.toml | před 1 týdnem | |
package-lock.json | před 1 týdnem | |
package.hugo.json | před 1 týdnem | |
package.json | před 1 týdnem | |
postcss.config.js | před 1 týdnem | |
tailwind.config.js | před 1 týdnem |
A very simple starter set up with TailwindCSS and its typography plugin and a build setup using PostCSS and PurgeCSS (when running the production build).
In the preview deployment on Netlify it currently has a 100 score on both mobile and desktop on Google PageSpeed.
This setup can be used both as a starter project and a theme.
npm install
hugo server
Import github.com/bep/hugo-starter-tailwind-basic/v3
(use github.com/bep/hugo-starter-tailwind-basic/v2
if you want/need Tailwind 2.x.) into your project, and then run:
hugo mod npm pack
npm install
You need to add (something like) this to your hugo.toml
:
[module]
[module.hugoVersion]
extended = false
min = "0.112.0"
[[module.mounts]]
source = "assets"
target = "assets"
[[module.mounts]]
source = "hugo_stats.json"
target = "assets/watching/hugo_stats.json"
[build]
writeStats = true
[[build.cachebusters]]
source = "assets/watching/hugo_stats\\.json"
target = "styles\\.css"
[[build.cachebusters]]
source = "(postcss|tailwind)\\.config\\.js"
target = "css"
[[build.cachebusters]]
source = "assets/.*\\.(js|ts|jsx|tsx)"
target = "js"
[[build.cachebusters]]
source = "assets/.*\\.(.*)$"
target = "$1"
Then run your project as usual.