TaskDecay v1.0.0 MVP — smart task review & archive Chrome extension
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import { defineConfig } from 'vite'
|
||||
import { crx } from '@crxjs/vite-plugin'
|
||||
import manifest from './manifest.json' assert { type: 'json' }
|
||||
|
||||
export default defineConfig({
|
||||
build: {
|
||||
outDir: 'dist',
|
||||
emptyOutDir: true,
|
||||
rollupOptions: {
|
||||
input: {
|
||||
popup: 'src/popup.html',
|
||||
options: 'src/options.html',
|
||||
review: 'src/review.html'
|
||||
}
|
||||
}
|
||||
},
|
||||
plugins: [crx({ manifest })]
|
||||
})
|
||||
Reference in New Issue
Block a user