5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-04 08:00:50 +08:00
wails/v3/internal/assetserver/assetserver_production.go
Lea Anthony a0b2ab7c0a
Fix default index.html serving.
Support multi-language default.
Remove default page from production builds.
Improve defaultindex.html.
2024-12-14 11:10:07 +11:00

10 lines
165 B
Go

//go:build production
package assetserver
func defaultIndexHTML(_ string) []byte {
return []byte("index.html not found")
}
func (a *AssetServer) LogDetails() {}