InvoiceChaser v1.0.0 — Freelancer Payment Tracker & Auto Follow-Up Chrome Extension

This commit is contained in:
Bun Bun
2026-06-19 18:33:39 +00:00
commit 326d408449
26 changed files with 3519 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import { crx } from "@crxjs/vite-plugin";
import { defineConfig } from "vite";
import manifest from "./src/manifest.json" with { type: "json" };
export default defineConfig({
build: {
outDir: "dist",
emptyOutDir: false,
rollupOptions: {
input: {
popup: "src/popup/popup.html",
},
},
},
plugins: [crx({ manifest })],
});