add global pet counter to site :3

This commit is contained in:
zyl 2024-06-25 16:31:26 -07:00
parent 0e444ec503
commit 29dcdc85cb
No known key found for this signature in database
14 changed files with 3677 additions and 0 deletions

11
cf/vitest.config.mts Normal file
View file

@ -0,0 +1,11 @@
import { defineWorkersConfig } from '@cloudflare/vitest-pool-workers/config';
export default defineWorkersConfig({
test: {
poolOptions: {
workers: {
wrangler: { configPath: './wrangler.toml' },
},
},
},
});