Spaces:
Sleeping
Sleeping
File size: 481 Bytes
faca43f aa786a3 faca43f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
import { sveltekit } from "@sveltejs/kit/vite";
import { defineConfig, searchForWorkspaceRoot } from "vite";
import Icons from "unplugin-icons/vite";
export default defineConfig({
plugins: [
sveltekit(),
Icons({
compiler: "svelte",
}),
],
server: {
fs: {
allow: [
// your custom rules
"/models/nenkoru/llama-7b-onnx-merged-fp16/decoder_model_merged.onnx",
"/models/nenkoru/llama-7b-onnx-merged-fp16/decoder_model_merged.onnx_data",
],
},
},
});
|