Chore: update environment configuration for local development; modify Dockerfile to streamline SDK installation and enhance startup script for better directory handling; add time verification script for system time synchronization

This commit is contained in:
salirezav
2025-08-08 16:18:37 -04:00
parent 20907509b1
commit 7a939920fa
7 changed files with 113 additions and 39 deletions

View File

@@ -4,7 +4,14 @@ import tailwindcss from '@tailwindcss/vite'
// https://vite.dev/config/
export default defineConfig({
plugins: [react(),
tailwindcss(),
plugins: [
react(),
tailwindcss(),
],
server: {
// Allow connecting via this VM's hostname
allowedHosts: ['exp-dash'],
// host is provided via CLI in docker-compose, but keeping this commented for local use:
// host: true,
},
})