add vite + crxjs (buggy)

This commit is contained in:
SethBurkart123
2023-12-18 07:37:49 +11:00
parent df7e52131b
commit 64185044c7
9 changed files with 442 additions and 1514 deletions
+14
View File
@@ -0,0 +1,14 @@
import { defineConfig } from 'vite'
import { crx } from '@crxjs/vite-plugin'
import manifest from './manifest.json'
export default defineConfig({
plugins: [crx({ manifest })],
server: {
port: 3004,
hmr: {
port: 8989,
overlay: false,
}
}
})