14 lines
684 B
YAML
14 lines
684 B
YAML
# htmgo configuration
|
|
|
|
# if tailwindcss is enabled, htmgo will automatically compile your tailwind and output it to assets/dist
|
|
tailwind: true
|
|
|
|
# which directories to ignore when watching for changes, supports glob patterns through https://github.com/bmatcuk/doublestar
|
|
watch_ignore: [".git", "node_modules", "dist/*"]
|
|
|
|
# files to watch for changes, supports glob patterns through https://github.com/bmatcuk/doublestar
|
|
watch_files: ["**/*.go", "**/*.css", "**/*.md"]
|
|
|
|
# files or directories to ignore when automatically registering routes for pages
|
|
# supports glob patterns through https://github.com/bmatcuk/doublestar
|
|
automatic_page_routing_ignore: ["base/root.go", "docs/base.go"]
|