We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6293746 commit 7aa7534Copy full SHA for 7aa7534
v3/Taskfile.yaml
@@ -30,8 +30,9 @@ tasks:
30
- rm -rf {{.TEMPLATE_DIR}}
31
- mkdir -p {{.TEMPLATE_DIR}}
32
33
- cli:install:
+ install:
34
dir: cmd/wails3
35
+ silent: true
36
cmds:
37
- go install
38
- echo "Installed wails CLI"
@@ -67,8 +68,9 @@ tasks:
67
68
- go get -u github.com/go-task/task/v3
69
70
reinstall-cli:
- dir: cmd/wails
71
+ dir: cmd/wails3
72
internal: true
73
74
75
76
- echo "Reinstalled wails CLI"
v3/internal/assetserver/build_production.go
@@ -7,10 +7,6 @@ import (
7
"net/http"
8
)
9
10
-func defaultIndexHTML() []byte {
11
- return []byte{}
12
-}
13
-
14
func NewAssetFileServer(vfs fs.FS) http.Handler {
15
return newAssetFileServerFS(vfs)
16
}
0 commit comments