2024-05-16 14:49:11 +00:00
|
|
|
import { sveltekit } from '@sveltejs/kit/vite';
|
|
|
|
import { defineConfig } from 'vite';
|
2024-11-23 16:03:31 +00:00
|
|
|
import mkcert from 'vite-plugin-mkcert';
|
2024-05-16 14:49:11 +00:00
|
|
|
|
|
|
|
export default defineConfig({
|
2024-11-23 16:03:31 +00:00
|
|
|
plugins: [sveltekit(), mkcert()],
|
|
|
|
server: {
|
|
|
|
proxy: {}
|
|
|
|
}
|
2024-05-16 14:49:11 +00:00
|
|
|
});
|