Skip to content

Commit

Permalink
fix(dev-server): fixed .wrangler path (#98)
Browse files Browse the repository at this point in the history
* fix: fixed `.wrangler` path

* add changeset
  • Loading branch information
yusukebe authored Feb 24, 2024
1 parent 52c4652 commit ff1f0b6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/silent-rules-reflect.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@hono/vite-dev-server': patch
---

fix: fixed `.wrangler` path
2 changes: 1 addition & 1 deletion packages/dev-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export const defaultOptions: Required<Omit<DevServerOptions, 'cf'>> = {
/^\/static\/.+/,
/^\/node_modules\/.*/,
],
ignoreWatching: [/\/\.wrangler/],
ignoreWatching: [/\.wrangler/],
}
```

Expand Down
2 changes: 1 addition & 1 deletion packages/dev-server/src/dev-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const defaultOptions: Required<Omit<DevServerOptions, 'env' | 'cf' | 'ada
/^\/static\/.+/,
/^\/node_modules\/.*/,
],
ignoreWatching: [/\/\.wrangler/],
ignoreWatching: [/\.wrangler/],
plugins: [],
}

Expand Down

0 comments on commit ff1f0b6

Please sign in to comment.