Fix public access mode, introduce loading spinners, package fixes

This commit is contained in:
Alexander R.
2026-07-22 18:00:15 +00:00
parent 0b7259a011
commit b669d2e799
197 changed files with 698 additions and 20961 deletions
+11 -3
View File
@@ -5,7 +5,15 @@ import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
host: true
}
port: 10000,
host: true,
allowedHosts: true,
proxy: {
'/challenges': 'http://127.0.0.1:8000',
'/run': 'http://127.0.0.1:8000',
'/lint': 'http://127.0.0.1:8000',
'/guide': 'http://127.0.0.1:8000',
'/handbook': 'http://127.0.0.1:8000',
},
},
})