htmgo/htmgo-site/htmgo.yml

15 lines
684 B
YAML
Raw Permalink Normal View History

2024-10-14 14:49:48 +00:00
# htmgo configuration
# if tailwindcss is enabled, htmgo will automatically compile your tailwind and output it to assets/dist
2024-10-13 21:33:08 +00:00
tailwind: true
2024-10-14 14:49:48 +00:00
# which directories to ignore when watching for changes, supports glob patterns through https://github.com/bmatcuk/doublestar
2024-10-13 21:33:08 +00:00
watch_ignore: [".git", "node_modules", "dist/*"]
2024-10-14 14:49:48 +00:00
# files to watch for changes, supports glob patterns through https://github.com/bmatcuk/doublestar
watch_files: ["**/*.go", "**/*.css", "**/*.md"]
2024-10-28 15:32:50 +00:00
# files or directories to ignore when automatically registering routes for pages
# supports glob patterns through https://github.com/bmatcuk/doublestar
2024-10-30 18:29:20 +00:00
automatic_page_routing_ignore: ["base/root.go", "docs/base.go"]