chore: update dependencies and add wrangler configuration

- Added "wrangler" dependency to package.json for Cloudflare Workers support.
- Created wrangler.jsonc configuration file for project setup with assets directory.
This commit is contained in:
Thuan Bui
2026-03-15 20:51:30 +07:00
parent 2dc6dd6128
commit 023c00f04c
3 changed files with 885 additions and 13 deletions
+876 -12
View File
File diff suppressed because it is too large Load Diff
+2 -1
View File
@@ -48,7 +48,8 @@
"prettier": "^3.7.4", "prettier": "^3.7.4",
"prettier-plugin-astro": "^0.14.1", "prettier-plugin-astro": "^0.14.1",
"typescript-eslint": "^8.52.0", "typescript-eslint": "^8.52.0",
"vitest": "^4.0.16" "vitest": "^4.0.16",
"wrangler": "^4.73.0"
}, },
"lint-staged": { "lint-staged": {
"*.{js,jsx,ts,tsx,astro}": [ "*.{js,jsx,ts,tsx,astro}": [
+7
View File
@@ -0,0 +1,7 @@
{
"name": "blog-balodeplao",
"compatibility_date": "2026-03-15", // Cập nhật ngày hiện tại
"assets": {
"directory": "./dist",
},
}