repos / pico

pico services mono repo
git clone https://github.com/picosh/pico.git

commit
cae15d7
parent
853d60e
author
Eric Bower
date
2025-06-20 14:23:35 -0400 EDT
fix(pgs): home page
1 files changed,  +1, -1
M pkg/apps/pgs/config.go
+1, -1
1@@ -58,7 +58,7 @@ func (c *PgsConfig) AssetURL(username, projectName, fpath string) string {
2 }
3 
4 func (c *PgsConfig) StaticPath(fname string) string {
5-	return filepath.Join("pgs", fname)
6+	return filepath.Join("pkg", "apps", "pgs", fname)
7 }
8 
9 var maxSize = uint64(25 * utils.MB)