Skip to content

Commit

Permalink
feat(example/bun-build): Disable cache in UnpluginTypia
Browse files Browse the repository at this point in the history
This commit disables the cache in UnpluginTypia. The change is made in
the 'bun-build/preload.ts' file. The cache option is set from 'true' to
'false'. This might affect the performance of the plugin.
  • Loading branch information
ryoppippi committed Jun 8, 2024
1 parent 95e5aea commit 9a08b0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/bun-build/preload.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { plugin } from 'bun';
import UnpluginTypia from 'unplugin-typia/bun'

plugin(UnpluginTypia({cache:true}))
plugin(UnpluginTypia({cache: false}))

0 comments on commit 9a08b0b

Please sign in to comment.