"add docker compose up/down scripts and update vite config for production environment"

This commit is contained in:
louiscklaw
2025-06-11 18:49:28 +08:00
parent f487427b2c
commit ebc8a81641
5 changed files with 41 additions and 0 deletions

7
vite.config.js Normal file
View File

@@ -0,0 +1,7 @@
import { defineConfig } from 'vite';
export default defineConfig({
server: {
allowedHosts: ['pa_mobile.louislabs.com'],
},
});