Skip to content

Commit

Permalink
Merge pull request #10 from minh-de-rien/dev
Browse files Browse the repository at this point in the history
Home Page Skeleton
  • Loading branch information
minh-de-rien committed Jan 25, 2024
2 parents 6643984 + e23183a commit 03a5cd9
Show file tree
Hide file tree
Showing 19 changed files with 971 additions and 186 deletions.
8 changes: 8 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 120,
"plugins": ["prettier-plugin-astro", "prettier-plugin-tailwindcss"],
"pluginSearchDirs": false
}
9 changes: 5 additions & 4 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import { defineConfig } from 'astro/config';
import mdx from '@astrojs/mdx';

import sitemap from '@astrojs/sitemap';

import tailwind from "@astrojs/tailwind";

// https://astro.build/config
export default defineConfig({
site: 'https://example.com',
integrations: [mdx(), sitemap()],
});
site: 'https://example.com',
integrations: [mdx(), sitemap(), tailwind()]
});
Loading

0 comments on commit 03a5cd9

Please sign in to comment.