-
Notifications
You must be signed in to change notification settings - Fork 4
/
vite.config.ts
37 lines (34 loc) · 965 Bytes
/
vite.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import { defineConfig } from 'vite'
import webExtension, { readJsonFile } from 'vite-plugin-web-extension'
const targetToBrowsers: Record<string, string> = {
chrome: 'chrome',
vivaldi: 'chrome',
firefox: 'firefox',
}
const target = process.env.TARGET || 'firefox'
const browser = targetToBrowsers[target]
export default defineConfig({
plugins: [
webExtension({
browser,
manifest: () => {
const packageJSON = readJsonFile('./package.json')
const manifestCommon = readJsonFile('./src/manifest.common.json')
const manifestFirefox = readJsonFile('./src/manifest.firefox.json')
const manifestChrome = readJsonFile('./src/manifest.chrome.json')
return {
...manifestCommon,
...manifestFirefox,
...manifestChrome,
version: packageJSON.version,
}
},
webExtConfig: {
chromiumBinary:
target === 'vivaldi'
? '/Applications/Vivaldi.app/Contents/MacOS/Vivaldi'
: undefined,
},
}),
],
})