Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
uki00a authored Dec 2, 2023
1 parent 9f56829 commit 5d78209
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
6 changes: 3 additions & 3 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"fmt": { "exclude": ["fresh.gen.ts", "README.md"] },
"imports": {
"$fresh/": "https://deno.land/x/fresh@1.5.2/",
"preact": "https://esm.sh/preact@10.18.1",
"preact/": "https://esm.sh/preact@10.18.1/",
"$fresh/": "https://deno.land/x/fresh@1.6.0/",
"preact": "https://esm.sh/preact@10.19.2",
"preact/": "https://esm.sh/preact@10.19.2/",
"preact-render-to-string": "https://esm.sh/*[email protected]",
"@preact/signals": "https://esm.sh/*@preact/[email protected]",
"@preact/signals-core": "https://esm.sh/*@preact/[email protected]",
Expand Down
12 changes: 7 additions & 5 deletions fresh.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,18 @@
// This file SHOULD be checked into source version control.
// This file is automatically updated during development when running `dev.ts`.

import * as $0 from "./routes/_app.tsx";
import * as $1 from "./routes/index.tsx";
import * as $_app from "./routes/_app.tsx";
import * as $index from "./routes/index.tsx";

import { type Manifest } from "$fresh/server.ts";

const manifest = {
routes: {
"./routes/_app.tsx": $0,
"./routes/index.tsx": $1,
"./routes/_app.tsx": $_app,
"./routes/index.tsx": $index,
},
islands: {},
baseUrl: import.meta.url,
};
} satisfies Manifest;

export default manifest;

0 comments on commit 5d78209

Please sign in to comment.