updated dependencies. Changed dev to http (as it needs proxying anyway)

* updated dependencies. Changed dev to http (as it needs proxying anyway)
This commit is contained in:
routerino 2024-10-01 21:22:39 +10:00 committed by GitHub
parent 89b113a223
commit 8e54c94a8d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 766 additions and 515 deletions

1276
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -2,7 +2,7 @@
"name": "headscale-ui",
"version": "2024.02.24-beta1",
"scripts": {
"dev": "vite dev --port 443 --host 0.0.0.0",
"dev": "vite dev --port 8080 --host 0.0.0.0",
"build": "vite build",
"package": "vite package",
"preview": "vite preview --https --port 443 --host 0.0.0.0",

View file

@ -1,11 +1,10 @@
// vite.config.js
import { sveltekit } from '@sveltejs/kit/vite';
import basicSsl from '@vitejs/plugin-basic-ssl'
/** @type {import('vite').UserConfig} */
const config = {
plugins: [sveltekit(), basicSsl()],
plugins: [sveltekit()],
};
export default config;