Skip to content

Commit 9ffaf1b

Browse files
authored
fix(router): prevent exception ui build from watching (#2142)
1 parent 08cc446 commit 9ffaf1b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

packages/router/src/Exceptions/local/vite.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ export default defineConfig({
4242
viteSingleFile(),
4343
],
4444
build: {
45-
watch: {
46-
exclude: 'dist/**', // prevent infinite loops while using --watch
47-
},
4845
rollupOptions: {
4946
input: ['./src/entrypoint/main.ts'],
47+
watch: {
48+
exclude: 'dist/**', // prevent infinite loops while using --watch
49+
},
5050
output: {
5151
inlineDynamicImports: true,
5252
assetFileNames: '[name][extname]',

0 commit comments

Comments
 (0)