Initial build: Citation Verifier Chrome extension MVP

This commit is contained in:
Bun Bun
2026-06-17 18:27:58 +00:00
commit e20ba828a0
16 changed files with 2967 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import { defineConfig } from 'vite';
import { crx } from '@crxjs/vite-plugin';
import manifest from './manifest.json' with { type: 'json' };
export default defineConfig({
plugins: [crx({ manifest })],
build: {
outDir: 'dist',
emptyOutDir: true,
rollupOptions: {
input: {
popup: 'src/popup.html',
},
},
},
});