Skip to content

Commit a172a49

Browse files
authored
Merge pull request #7 from brainpodnl/feat/update-styling-to-match-main-website
feat: update styling to match main website
2 parents c1e317a + b22ab22 commit a172a49

4 files changed

Lines changed: 592 additions & 1 deletion

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@ devenv.local.yaml
1313

1414
# pre-commit
1515
.pre-commit-config.yaml
16+
17+
# npm + other dependencies
18+
node_modules/

_config.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
import lume from "lume/mod.ts";
22
import wiki from "wiki/mod.ts";
3+
import tailwindcss from "lume/plugins/tailwindcss.ts";
34

45
const site = lume({
56
src: "./src",
67
dest: "./_site",
78
});
89

910
site.use(wiki());
11+
site.use(tailwindcss());
1012

1113
export default site;

deno.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,6 @@
6565
]
6666
}
6767
},
68-
"lock": false
68+
"lock": false,
69+
"nodeModulesDir": "auto"
6970
}

0 commit comments

Comments
 (0)