mirror of
https://github.com/WhoIsFishie/Fishie-Honesty-UI.git
synced 2025-02-22 17:22:14 +00:00
20 lines
339 B
JavaScript
20 lines
339 B
JavaScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
|
|
export default defineConfig({
|
|
plugins: [sveltekit()],
|
|
test: {
|
|
include: ['src/**/*.{test,spec}.{js,ts}']
|
|
},
|
|
server: {
|
|
https: true,
|
|
hmr: {
|
|
host: "honestyui.sar.sh",
|
|
port: 443,
|
|
protocol: "wss",
|
|
}
|
|
},
|
|
});
|
|
|