Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
viperML committed Jul 6, 2024
1 parent 47f4ce8 commit 8b90676
Show file tree
Hide file tree
Showing 12 changed files with 1,043 additions and 82 deletions.
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"files.associations": {
"*.css": "css"
},
"css.lint.unknownAtRules": "ignore"
}
12 changes: 11 additions & 1 deletion astro.config.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,25 @@
import { defineConfig } from 'astro/config'
import tailwind from "@astrojs/tailwind";
import { remarkReadingTime } from './src/reading-time.mjs';
import mdx from '@astrojs/mdx';

export default defineConfig({
// your configuration options here...
// https://docs.astro.build/en/reference/configuration-reference/
integrations: [
tailwind()
tailwind({
applyBaseStyles: false,
}),
mdx()
],
devToolbar: {
enabled: true
},
output: 'static',
site: "https://ayats.org",
markdown: {
remarkPlugins: [
remarkReadingTime
]
}
})
Loading

0 comments on commit 8b90676

Please sign in to comment.