mirror of https://github.com/o2sh/onefetch.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
313 B
13 lines
313 B
import { sveltekit } from '@sveltejs/kit/vite'; |
|
import { defineConfig } from 'vite'; |
|
import yaml from '@rollup/plugin-yaml'; |
|
|
|
export default defineConfig({ |
|
plugins: [sveltekit(), yaml()], |
|
server: { |
|
fs: { |
|
// Allow serving files from one level up to the project root |
|
allow: ['..'] |
|
} |
|
} |
|
});
|
|
|