diff --git a/.gitignore b/.gitignore index 4cf3c21..b91297b 100644 --- a/.gitignore +++ b/.gitignore @@ -3,5 +3,5 @@ node_modules/ bin/ tmp/ -dist/ +.dist/ assets/css/uno.css diff --git a/makefile b/makefile index 1881343..50a6d29 100644 --- a/makefile +++ b/makefile @@ -52,7 +52,7 @@ build/templ: go run github.com/a-h/templ/cmd/templ@v0.2.707 generate build/app: - go build -o dist/app . + go build -o ./.dist/app . build/assets: npx unocss @@ -60,7 +60,7 @@ build/assets: build: build/templ build/assets build/app run: build - ./dist/app + ./.dist/app clean: if [[ -d "dist" ]]; then rm -r ./dist; fi