a web component that shows the replies to a linked bsky post as comments.
1import { defineConfig } from 'vite'
2import tailwindcss from '@tailwindcss/vite'
3import gleam from "vite-gleam";
4
5export default defineConfig({
6 build: {
7 lib: {
8 entry: "./src/main.ts",
9 name: "bsky_comments_widget",
10 fileName: "bsky_comments_widget",
11 },
12 },
13 plugins: [
14 tailwindcss(), gleam()
15 ],
16})