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