Skip to content

Commit

Permalink
chore(astro): Enable Dev Tool not on test
Browse files Browse the repository at this point in the history
If `NODE_ENV` is test, disable it in succession.
  • Loading branch information
5ouma committed Nov 22, 2024
1 parent 51d07e0 commit e8caa16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion astro.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ export default defineConfig({
}),
],
},
devToolbar: { enabled: false },
devToolbar: { enabled: process.env.NODE_ENV !== "test" },
});

0 comments on commit e8caa16

Please sign in to comment.