-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathvite.config.ts
42 lines (40 loc) · 1.02 KB
/
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
38
39
40
41
42
import { defineConfig } from "vite"
import vue from "@vitejs/plugin-vue"
import webExtension, { readJsonFile } from "vite-plugin-web-extension"
import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite'
function generateManifest() {
const manifest = readJsonFile("src/manifest.json")
const pkg = readJsonFile("package.json")
return {
name: pkg.name,
description: pkg.description,
version: pkg.version,
...manifest,
};
}
// https://vitejs.dev/config/
export default defineConfig({
esbuild: {
supported: {
'top-level-await': true
},
},
plugins: [
vue(),
webExtension({
manifest: generateManifest,
additionalInputs: ["src/index.html"],
watchFilePaths: ["package.json", "manifest.json"],
webExtConfig: {
startUrl: process.env.START_URL || "https://github.com/abstracta/browser-copilot",
args: process.env.BROWSER_ARGS?.split(' ') || []
}
}),
VueI18nPlugin({
jitCompilation: true
}),
],
build: {
sourcemap: true
}
});