Improve review grid (#8953)

* Use constant aspect ratio for review grid

* Add infinite scrolling

* Don't have horizontal scrolling

* Handle autoplay for mobile

* Load more efficiently
This commit is contained in:
Nicolas Mowen
2023-12-13 20:15:28 -07:00
committed by Blake Blackshear
parent 1961a0afc1
commit fbe58652d5
7 changed files with 305 additions and 161 deletions

View File

@@ -12,24 +12,24 @@ export default defineConfig({
server: {
proxy: {
'/api': {
target: 'http://localhost:5000',
target: 'http://192.168.50.106:5000',
ws: true,
},
'/vod': {
target: 'http://localhost:5000'
target: 'http://192.168.50.106:5000'
},
'/clips': {
target: 'http://localhost:5000'
target: 'http://192.168.50.106:5000'
},
'/exports': {
target: 'http://localhost:5000'
target: 'http://192.168.50.106:5000'
},
'/ws': {
target: 'ws://localhost:5000',
target: 'ws://192.168.50.106:5000',
ws: true,
},
'/live': {
target: 'ws://localhost:5000',
target: 'ws://192.168.50.106:5000',
changeOrigin: true,
ws: true,
},