mee-components
v0.0.66
Published
## Installation
Downloads
135
Readme
Mee-Components
Installation
- Clone/download repo
pnpm install
Usage
Development
Run the app:
pnpm devProduction
pnpm build- Builds the app to
dist/
Use as a library
tailwind.config.mjs
/** @type {import('tailwindcss').Config} */
import theme from "mee-components/tailwind";
export default {
content: [
"./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}",
"./node_modules/mee-components/src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"
],
theme: theme,
plugins: [],
};
style file
@import "mee-components/base-theme";to use icons add to Layout.astro
import 'bootstrap-icons/font/bootstrap-icons.css';