feat: X API Cost Crisis Alert Chrome extension MVP with cost calculator, 8 alternatives, and 12 passing tests

This commit is contained in:
Bun Bun
2026-06-20 06:23:33 +00:00
commit 7052227f69
25 changed files with 3050 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import { defineConfig } from 'vite'
import { crx } from '@crxjs/vite-plugin'
import manifest from './src/manifest.json' assert { type: 'json' }
export default defineConfig({
build: {
outDir: 'dist',
emptyOutDir: true,
rollupOptions: {
input: {
popup: 'src/popup/popup.html'
}
}
},
plugins: [crx({ manifest })],
})