You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
152 B

  1. //go:build !prod
  2. // +build !prod
  3. package Frontend
  4. import (
  5. "io/fs"
  6. "os"
  7. )
  8. func GetFrontendAssets() fs.FS {
  9. return os.DirFS("Frontend/vue/dist")
  10. }