* Create index.html for the web application entry point * Add vite.svg as a favicon * Update frontend.go to embed all files in the dist directory * Modify vite.config.ts to set output directory for builds
9 lines
94 B
Go
9 lines
94 B
Go
package serverembed
|
|
|
|
import (
|
|
"embed"
|
|
)
|
|
|
|
//go:embed all:dist readme
|
|
var RootEmbedFS embed.FS
|