This repository has been archived on 2023-08-28. You can view files and clone it, but cannot push or open issues/pull-requests.
|
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
server: {
|
|
host: "0.0.0.0",
|
|
port: "8080",
|
|
},
|
|
plugins: [sveltekit()]
|
|
});
|