forked from saadeghi/daisy-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 4625859
Showing
30 changed files
with
12,927 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# build output | ||
dist | ||
|
||
# dependencies | ||
node_modules/ | ||
|
||
# logs | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# environment variables | ||
.env | ||
.env.production | ||
|
||
# macOS-specific files | ||
.DS_Store | ||
/.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
## force pnpm to hoist | ||
shamefully-hoist = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"startCommand": "npm run dev" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Daisy Blog | ||
|
||
Simple blog template with Astro, Tailwind CSS, daisyUI | ||
|
||
## Features | ||
|
||
- Dark mode and light mode | ||
- Markdown content | ||
- Tailwind CSS and daisyUI included | ||
- Tailwind CSS Typography plugin included | ||
- Posts have date, author name, description and image | ||
- SEO tags, meta tags, and social tags included | ||
- Posts can be draft (only visible on development environment) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import astroRemark from '@astrojs/markdown-remark'; | ||
import { defineConfig } from "astro/config"; | ||
import sitemap from "@astrojs/sitemap"; | ||
|
||
// https://astro.build/config | ||
export default defineConfig( | ||
/** @type {import('astro').AstroUserConfig} */ | ||
{ | ||
markdown: { | ||
render: [astroRemark, { | ||
remarkPlugins: [], | ||
rehypePlugins: ['rehype-slug', ['rehype-autolink-headings', { | ||
behavior: 'wrap' | ||
}]], | ||
shikiConfig: { | ||
theme: 'poimandres', | ||
langs: [], | ||
wrap: false | ||
} | ||
}] | ||
}, | ||
site: 'http://localhost:3000/', | ||
integrations: [sitemap()] | ||
}); |
Oops, something went wrong.