build: remove tailwindcss but add to docs
This commit is contained in:
parent
65e23b0d20
commit
8c3f766bc0
6 changed files with 36 additions and 27 deletions
BIN
bun.lockb
BIN
bun.lockb
Binary file not shown.
|
|
@ -1,14 +1,14 @@
|
|||
import { defineConfig } from "astro/config";
|
||||
import starlight from "@astrojs/starlight";
|
||||
|
||||
import tailwind from "@astrojs/tailwind";
|
||||
|
||||
// https://astro.build/config
|
||||
export default defineConfig({
|
||||
integrations: [
|
||||
starlight({
|
||||
integrations: [starlight({
|
||||
title: "File Converter Tool",
|
||||
social: {
|
||||
github: "https://github.com/rzmk/fct",
|
||||
},
|
||||
}),
|
||||
],
|
||||
github: "https://github.com/rzmk/fct"
|
||||
}
|
||||
}), tailwind()]
|
||||
});
|
||||
BIN
docs/bun.lockb
BIN
docs/bun.lockb
Binary file not shown.
|
|
@ -10,10 +10,12 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/check": "^0.7.0",
|
||||
"@astrojs/starlight": "^0.25.0",
|
||||
"@astrojs/tailwind": "^5.1.0",
|
||||
"astro": "^4.10.2",
|
||||
"sharp": "^0.32.5",
|
||||
"@astrojs/check": "^0.7.0",
|
||||
"tailwindcss": "^3.4.4",
|
||||
"typescript": "^5.5.3"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
8
docs/tailwind.config.mjs
Normal file
8
docs/tailwind.config.mjs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
||||
theme: {
|
||||
extend: {},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
|
|
@ -31,7 +31,6 @@
|
|||
"eslint-config-next": "14.2.4",
|
||||
"postcss": "^8",
|
||||
"tailwind-merge": "^2.3.0",
|
||||
"tailwindcss": "^3.4.4",
|
||||
"typescript": "^5"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue