a web component that shows the replies to a linked bsky post as comments.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 16 lines 331 B view raw
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})