mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 11:44:40 +00:00
14 lines
270 B
JavaScript
14 lines
270 B
JavaScript
import { crx } from '@crxjs/vite-plugin'
|
|
import { defineConfig } from 'vite'
|
|
import manifest from './manifest.json'
|
|
|
|
export default defineConfig({
|
|
plugins: [crx({ manifest })],
|
|
server: {
|
|
port: 3004,
|
|
hmr: {
|
|
port: 8989,
|
|
overlay: false,
|
|
}
|
|
}
|
|
}) |