5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-02 07:40:17 +08:00
wails/website/docs/guides/troubleshooting.mdx
2022-02-28 08:33:18 +11:00

15 lines
385 B
Plaintext

# Troubleshooting
An assortment of troubleshooting tips.
## My application is displaying a white/blank screen
Check that your application includes the assets from the correct directory. In your `main.go` file, you will have
something similar to the following code:
```go
//go:embed frontend/dist
var assets embed.FS
```
Check that `frontend/dist` contains your application assets.