Skip to content

Commit

Permalink
fix: 502 bad gateway error (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jabolol authored Jan 9, 2024
1 parent 2933c0c commit dea6a9f
Showing 1 changed file with 27 additions and 7 deletions.
34 changes: 27 additions & 7 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,16 @@
"build": "deno run -A --unstable dev.ts build",
"preview": "deno run --env -A --unstable main.ts"
},
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"lint": {
"rules": {
"tags": [
"fresh",
"recommended"
]
}
},
"imports": {
"$fresh/": "https://deno.land/x/fresh@1.6.0/",
"$fresh/": "https://deno.land/x/fresh@1.6.1/",
"preact": "https://esm.sh/preact@10.15.1",
"preact/": "https://esm.sh/preact@10.15.1/",
"preact-render-to-string": "https://esm.sh/*preact-render-to-string@6.2.1",
Expand All @@ -21,11 +28,24 @@
"ga4/": "https://raw.githubusercontent.com/Jabolol/ga4/main/",
"std/": "https://deno.land/std@0.197.0/",
"charts/": "https://deno.land/x/fresh_charts@0.3.1/",
"tailwindcss": "npm:tailwindcss@3.3.6",
"tailwindcss/": "npm:/tailwindcss@3.3.6/",
"tailwindcss/plugin": "npm:tailwindcss@3.3.6/plugin.js",
"tailwindcss": "npm:tailwindcss@3.4.1",
"tailwindcss/": "npm:/tailwindcss@3.4.1/",
"tailwindcss/plugin": "npm:tailwindcss@3.4.1/plugin.js",
"~/": "./"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"exclude": ["**/_fresh/*"]
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"exclude": [
"**/_fresh/*"
],
"deploy": {
"project": "9ab14b2a-b0d9-4e55-83ec-7f25f7ad1d52",
"exclude": [
"**/node_modules"
],
"include": [],
"entrypoint": "main.ts"
}
}

0 comments on commit dea6a9f

Please sign in to comment.