Skip to content

Commit

Permalink
Merge branch 'daisy-to-shadcn'
Browse files Browse the repository at this point in the history
  • Loading branch information
LuanRoger committed Apr 13, 2024
2 parents c177592 + b3d42c2 commit 8dda660
Show file tree
Hide file tree
Showing 40 changed files with 1,711 additions and 406 deletions.
9 changes: 6 additions & 3 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,19 @@ import { defineConfig } from 'astro/config';
import tailwind from "@astrojs/tailwind";
import mdx from "@astrojs/mdx";
import getReadTime from './src/scripts/reading_time';

import vercel from "@astrojs/vercel/serverless";
import icon from "astro-icon";
import react from "@astrojs/react";

// https://astro.build/config
export default defineConfig({
integrations: [tailwind(), mdx(), icon({
integrations: [tailwind({
applyBaseStyles: false,
}), mdx(), icon({
include: {
simple_icons: ["*"]
}
})],
}), react()],
site: "https://lrtechblog.vercel.app",
output: "hybrid",
adapter: vercel({
Expand Down
17 changes: 17 additions & 0 deletions components.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "default",
"rsc": false,
"tsx": true,
"tailwind": {
"config": "tailwind.config.js",
"css": "./src/styles/global.css",
"baseColor": "slate",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils": "@/lib/utils"
}
}
Loading

0 comments on commit 8dda660

Please sign in to comment.