Skip to content

Commit

Permalink
fix: bullet points not appearing
Browse files Browse the repository at this point in the history
  • Loading branch information
deer committed Jan 17, 2024
1 parent 0cf89be commit 6df05bb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"imports": {
"$fresh/": "https://deno.land/x/[email protected].1/",
"$fresh/": "https://deno.land/x/[email protected].3/",
"preact": "https://esm.sh/[email protected]",
"preact/": "https://esm.sh/[email protected]/",
"preact-render-to-string": "https://esm.sh/*[email protected]",
Expand All @@ -20,7 +20,9 @@
"tailwindcss/plugin": "npm:/[email protected]/plugin.js",
"@/": "./",
"./": "./",
"$std/": "https://deno.land/[email protected]/"
"$std/": "https://deno.land/[email protected]/",
"fresh_blog/": "https://deno.land/x/[email protected]/",
"fresh_ga4/": "https://deno.land/x/[email protected]/"
},
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"exclude": ["**/_fresh/*"]
Expand Down
4 changes: 2 additions & 2 deletions fresh.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import tailwind from "$fresh/plugins/tailwind.ts";
import {
BlogOptions,
blogPlugin,
} from "https://deno.land/x/fresh_blog@0.0.5/mod.ts";
} from "fresh_blog/mod.ts";

import { ga4Plugin } from "https://deno.land/x/fresh_ga4@0.0.4/mod.ts";
import { ga4Plugin } from "fresh_ga4/mod.ts";

const blogOptions: BlogOptions = {
title: "Reed's Blog",
Expand Down
2 changes: 1 addition & 1 deletion tailwind.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { type Config } from "tailwindcss";
import { safelist } from "https://deno.land/x/fresh_blog@0.0.5/mod.ts";
import { safelist } from "fresh_blog/mod.ts";

export default {
content: [
Expand Down

0 comments on commit 6df05bb

Please sign in to comment.