fix(vite.config): also ignore .direnv
This commit is contained in:
parent
abe45c4ade
commit
35123ba4a7
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ export default defineConfig({
|
||||||
server: {
|
server: {
|
||||||
watch: {
|
watch: {
|
||||||
// absurdly big
|
// absurdly big
|
||||||
ignored: (file) => file.includes("/.petalpkgs")
|
ignored: (file) => /\/(\.direnv|\.petalpkgs)$/.test(file)
|
||||||
},
|
},
|
||||||
fs: {
|
fs: {
|
||||||
allow: ["./tailwind.config.js", "./.petalpkgs"]
|
allow: ["./tailwind.config.js", "./.petalpkgs"]
|
||||||
|
|
Loading…
Reference in a new issue