9 lines
206 B
Go
9 lines
206 B
Go
// Package web provides the embedded frontend assets built by Vite.
|
|
// Run `npm run build` inside the web/ directory before building the binary.
|
|
package web
|
|
|
|
import "embed"
|
|
|
|
//go:embed dist
|
|
var FS embed.FS
|