mirror of
https://github.com/yume-chan/ya-webadb.git
synced 2025-10-03 09:49:24 +02:00
11 lines
263 B
JavaScript
11 lines
263 B
JavaScript
import { defineConfig } from "vite";
|
|
|
|
export default defineConfig({
|
|
// This example installs the package as symlink
|
|
// so this is required to allow vite to access the package
|
|
server: {
|
|
fs: {
|
|
allow: ["../.."],
|
|
},
|
|
},
|
|
});
|