Switched port to 8000

This commit is contained in:
Neshura 2024-01-01 07:07:27 +01:00
parent 04ecead4cf
commit d8dba19353
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C

View file

@ -2,5 +2,13 @@ import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [sveltekit()]
plugins: [sveltekit()],
server: {
host: true,
port: 8000,
},
preview: {
host: true,
port: 8000,
}
});