mirror of
https://github.com/iptv-org/iptv-org.github.io.git
synced 2025-05-11 01:20:06 -04:00
13 lines
229 B
JavaScript
13 lines
229 B
JavaScript
import { sveltekit } from '@sveltejs/kit/vite'
|
|
|
|
/** @type {import('vite').UserConfig} */
|
|
const config = {
|
|
plugins: [sveltekit()],
|
|
server: {
|
|
https: false,
|
|
host: '127.0.0.1',
|
|
port: 3333
|
|
}
|
|
}
|
|
|
|
export default config
|