️ perf(tailwind): add default tailwind css

This commit is contained in:
Eshan Roy (Eshanized)
2024-06-19 02:49:01 +05:30
parent ec51dd504f
commit 3f70a94a96
5 changed files with 1065 additions and 37 deletions

View File

@@ -1,27 +1,28 @@
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
import tailwind from "@astrojs/tailwind";
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
title: 'SNIGDHA OS',
social: {
github: 'https://github.com/withastro/starlight',
},
sidebar: [
{
label: 'Guides',
items: [
// Each item here is one entry in the navigation menu.
{ label: 'Example Guide', link: '/guides/example/' },
],
},
{
label: 'Reference',
autogenerate: { directory: 'reference' },
},
],
}),
],
});
integrations: [starlight({
title: 'SNIGDHA OS',
social: {
github: 'https://github.com/withastro/starlight'
},
sidebar: [{
label: 'Guides',
items: [
// Each item here is one entry in the navigation menu.
{
label: 'Example Guide',
link: '/guides/example/'
}]
}, {
label: 'Reference',
autogenerate: {
directory: 'reference'
}
}]
}), tailwind()]
});