mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-04 12:51:38 +08:00

Support multi-language default. Remove default page from production builds. Improve defaultindex.html.
10 lines
165 B
Go
10 lines
165 B
Go
//go:build production
|
|
|
|
package assetserver
|
|
|
|
func defaultIndexHTML(_ string) []byte {
|
|
return []byte("index.html not found")
|
|
}
|
|
|
|
func (a *AssetServer) LogDetails() {}
|