10 lines
225 B
Go
10 lines
225 B
Go
// embed_dev.go — used in non-production builds (no web/build directory required)
|
|
//go:build !production
|
|
|
|
package main
|
|
|
|
import "io/fs"
|
|
|
|
// webFS is nil in dev mode; the router will skip static file serving.
|
|
var webFS fs.FS
|