From 49f4067bc516f13afb0859fcde5bb5e40413c3a5 Mon Sep 17 00:00:00 2001 From: maddalax Date: Mon, 14 Oct 2024 09:52:06 -0500 Subject: [PATCH] add default config file to template --- templates/starter/htmgo.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 templates/starter/htmgo.yml diff --git a/templates/starter/htmgo.yml b/templates/starter/htmgo.yml new file mode 100644 index 0000000..d60d2ff --- /dev/null +++ b/templates/starter/htmgo.yml @@ -0,0 +1,10 @@ +# 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"]