We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b00cc1b commit 6fc675cCopy full SHA for 6fc675c
Taskfile.yaml
@@ -1,4 +1,4 @@
1
-version: '3'
+version: "3"
2
3
tasks:
4
setup:
@@ -51,6 +51,11 @@ tasks:
51
cmds:
52
- npm run build
53
54
+ assets-watch:
55
+ desc: Build frontend assets and watch for changes
56
+ cmds:
57
+ - npm run build:watch
58
+
59
vite:
60
desc: Run Vite development server
61
package.json
@@ -3,7 +3,8 @@
"type": "module",
"scripts": {
5
"dev": "vite",
6
- "build": "vite build"
+ "build": "vite build",
7
+ "build:watch": "vite build --watch"
8
},
9
"dependencies": {
10
"@tailwindcss/typography": "^0.5.16",
0 commit comments