I am using @maizzle/nuxt on windows
My project has a symlinked folder to an smb share (a workaround to deal with unjs/pathe#245).
There appears to be no way to configure server.watch.ignored on the vite dev server that gets spun up here:
|
server: { |
|
port, |
|
host, |
|
fs: { |
|
allow: [process.cwd(), config.root ?? process.cwd(), devUIDir, ...['vue', 'vue-router', 'reka-ui', '@vueuse/core', '@vueuse/shared', '@lucide/vue', 'class-variance-authority', 'clsx', 'tailwind-merge', 'culori'].map(pkg)], |
|
}, |
|
}, |
This causes the following error to be thrown thousands of times and effectivly hangs my nuxt dev server
ERROR [unhandledRejection] UNKNOWN: unknown error, watch
at FSWatcher._handle.onchange (node:internal/fs/watchers:267:21)
I am using
@maizzle/nuxton windowsMy project has a symlinked folder to an smb share (a workaround to deal with unjs/pathe#245).
There appears to be no way to configure
server.watch.ignoredon the vite dev server that gets spun up here:framework/src/serve.ts
Lines 134 to 140 in 1347cde
This causes the following error to be thrown thousands of times and effectivly hangs my nuxt dev server