Skip to content

Commit

Permalink
Merge pull request #608 from SAFE-Stack/fix-hmr
Browse files Browse the repository at this point in the history
Fix HMR
  • Loading branch information
jwthomson authored May 24, 2024
2 parents 4efa8d1 + b9d77a7 commit dbe6b1c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Content/default/src/Client/vite.config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ export default defineConfig({
target: proxyTarget,
changeOrigin: true,
}
}
},
watch: {
ignored: [ "**/*.fs" ]
},
}
});
5 changes: 4 additions & 1 deletion Content/minimal/src/Client/vite.config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ export default defineConfig({
target: proxyTarget,
changeOrigin: true,
}
}
},
watch: {
ignored: [ "**/*.fs" ]
},
}
});

0 comments on commit dbe6b1c

Please sign in to comment.