feat: Screwdriver v1.0.0

This commit is contained in:
Bun Bun
2026-06-16 12:30:22 +00:00
commit e7555e6f41
28 changed files with 4893 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({
build: {
emptyOutDir: true,
rollupOptions: {
input: {
popup: 'src/popup/popup.html',
options: 'src/options/options.html',
},
},
},
plugins: [crx({ manifest })],
})