Skip to content

Commit

Permalink
feat: add pagefind
Browse files Browse the repository at this point in the history
  • Loading branch information
diegosteiner committed Sep 11, 2024
1 parent 6fbea65 commit 914e58b
Show file tree
Hide file tree
Showing 6 changed files with 961 additions and 1,204 deletions.
8 changes: 6 additions & 2 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
import { defineConfig } from 'astro/config';
import tailwind from '@astrojs/tailwind';
import pagefind from "astro-pagefind";

// https://astro.build/config
export default defineConfig({
site: 'https://www.heimv.ch',
integrations: [tailwind()],
server: { host: true}
integrations: [tailwind(), pagefind()],
server: { host: true },
build: {
format: "file",
},
});
17 changes: 9 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "density-dwarf",
"name": "heimv-www",
"type": "module",
"version": "0.0.1",
"version": "1.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
Expand All @@ -11,13 +11,14 @@
},
"dependencies": {
"@astrojs/tailwind": "^5.1.0",
"astro": "^4.10.1",
"sharp": "^0.33.4",
"tailwindcss": "^3.4.4"
"astro": "^4.15.4",
"astro-pagefind": "^1.6.0",
"sharp": "^0.33.5",
"tailwindcss": "^3.4.10"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.13",
"sass": "^1.77.4",
"typescript": "^5.4.5"
"@tailwindcss/typography": "^0.5.15",
"sass": "^1.78.0",
"typescript": "^5.6.2"
}
}
Loading

0 comments on commit 914e58b

Please sign in to comment.