space-engineers-thrust-calc.../vite.config.ts

10 lines
172 B
TypeScript
Raw Permalink Normal View History

2024-05-19 22:31:58 +00:00
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
2024-05-19 22:34:54 +00:00
plugins: [sveltekit()],
server: {
host: '::'
}
2024-05-19 22:31:58 +00:00
});