diff --git a/website/docs/guides/troubleshooting.mdx b/website/docs/guides/troubleshooting.mdx new file mode 100644 index 000000000..00f1d8dcd --- /dev/null +++ b/website/docs/guides/troubleshooting.mdx @@ -0,0 +1,15 @@ + +# 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. \ No newline at end of file