fixed bug with spreadsheet import

This commit is contained in:
GotthardG
2024-12-10 16:28:44 +01:00
parent 69bf5b5a6e
commit 672574c755
4 changed files with 9 additions and 7 deletions

View File

@ -1,5 +1,5 @@
{
"name": "mheidi-frontend-v2",
"name": "heidi-frontend-v2",
"private": true,
"version": "0.0.0",
"type": "module",

View File

@ -13,6 +13,8 @@ export default defineConfig(({ mode }) => {
https: {
key: env.VITE_SSL_KEY_PATH,
cert: env.VITE_SSL_CERT_PATH,
}
},
host: true, // This allows hosting on network interfaces
port: 5173 // Optional: Specify a custom port (default is 5173)
}}
});