Fishie-Honesty-UI/vite.config.js

21 lines
357 B
JavaScript
Raw Normal View History

2023-04-04 21:35:10 +05:00
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vitest/config';
2023-04-21 01:55:16 +05:00
2023-04-04 21:35:10 +05:00
export default defineConfig({
plugins: [sveltekit()],
test: {
include: ['src/**/*.{test,spec}.{js,ts}']
2023-04-21 01:57:50 +05:00
},
server: {
port: 5173,
https: true,
hmr: {
host: "honestyui.sar.sh/",
port: 5173,
protocol: "wss",
}
},
2023-04-04 21:35:10 +05:00
});
2023-04-06 14:21:56 +05:00