mirror of
https://github.com/youwen5/site.git
synced 2024-11-24 17:33:51 -08:00
11 lines
192 B
TypeScript
11 lines
192 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
plugins: [sveltekit()],
|
|
server: {
|
|
fs: {
|
|
allow: ['./blog']
|
|
}
|
|
}
|
|
});
|