diff options
author | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2023-07-20 20:13:37 +0200 |
---|---|---|
committer | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2023-07-20 20:13:37 +0200 |
commit | 398ae343e6a33fb81f82380b17081b8f9bae328a (patch) | |
tree | 3d13af74b4d1542ec2ba06c2fcf9b73687a71274 /cmd/server | |
parent | b6629e85bc4d77f43d2ddfe70505a25714018e65 (diff) | |
download | lens-398ae343e6a33fb81f82380b17081b8f9bae328a.tar.gz lens-398ae343e6a33fb81f82380b17081b8f9bae328a.tar.bz2 lens-398ae343e6a33fb81f82380b17081b8f9bae328a.zip |
feat: Fix video loading its full width
Diffstat (limited to 'cmd/server')
-rw-r--r-- | cmd/server/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/server/main.go b/cmd/server/main.go index 1591102..b940145 100644 --- a/cmd/server/main.go +++ b/cmd/server/main.go @@ -72,7 +72,7 @@ func main() { } r := router.New() - r.GET("/static/{filepath:*}", ext.FileServer(static.Static, "static/")) + r.GET("/static/{filepath:*}", ext.FileServer(static.Static)) // repository var ( |