feat: DictaTask MVP - voice memos to structured tasks Chrome extension

This commit is contained in:
Bun Bun
2026-06-21 06:29:56 +00:00
commit 2039b98586
14 changed files with 2968 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import { defineConfig } from 'vite';
import { crx } from '@crxjs/vite-plugin';
import manifest from './src/manifest.json' assert { type: 'json' };
export default defineConfig({
plugins: [crx({ manifest })],
build: {
outDir: 'dist',
emptyOutDir: true,
rollupOptions: {
input: {
popup: 'src/popup/popup.html',
}
}
},
publicDir: 'public'
});