Skip to content

Commit

Permalink
Merge pull request #12 from thefrontside/tm/fix-deploy
Browse files Browse the repository at this point in the history
Fixed the path
  • Loading branch information
cowboyd authored Oct 4, 2024
2 parents de5ec82 + 999f4cb commit be74877
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion www/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@
},
"private": true,
"imports": {
"effection": "npm:[email protected]",
"effection-www/": "https://raw.githubusercontent.com/thefrontside/effection/4982887c1677b847d256402e8709f2b1d49437e6/www/",
"@std/assert": "jsr:@std/assert@1",
"revolution": "https://deno.land/x/[email protected]/mod.ts",
"revolution/jsx-runtime": "https://deno.land/x/[email protected]/jsx-runtime.ts",
"@effection-contri/deno-deploy": "file://../deno-deploy/mod.ts"
"@effection-contrib/deno-deploy": "../deno-deploy/mod.ts"
}
}
4 changes: 2 additions & 2 deletions www/routes/app.html.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Operation } from "effection";
import type { JSXChild } from "revolution";
import type { JSXChild, JSXElement } from "revolution";
import { useDenoDeploy } from "@effection-contrib/deno-deploy";

import { useAbsoluteUrl } from "effection-www/plugins/rebase.ts";
Expand Down Expand Up @@ -28,7 +28,7 @@ export function* useAppHtml({
let homeURL = yield* useAbsoluteUrl("/");
let { isDenoDeploy } = yield* useDenoDeploy();

const navLinks: JSX.Element[] = [
const navLinks: JSXElement[] = [
<a href="/docs/installation">Guides</a>,
<a href="https://deno.land/x/effection/mod.ts">API</a>,
<a
Expand Down

0 comments on commit be74877

Please sign in to comment.