-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvite.config.ts
36 lines (35 loc) · 994 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
import { defineConfig } from "vite";
import { resolve } from "path";
import react from "@vitejs/plugin-react";
import copy from "rollup-plugin-copy";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
react(),
copy({
targets: [
{ src: "manifest.json", dest: "dist" },
{ src: "src/assets", dest: "dist" },
],
hook: "writeBundle",
}),
],
build: {
rollupOptions: {
input: {
popup: resolve(__dirname, "/src_crx/popup.html"),
options: resolve(__dirname, "/src_crx/options.html"),
"src_crx/service_worker": "/src_crx/service_worker.ts",
"src_crx/content_script": "/src_crx/content_script.ts",
"src_crx/src_content_script/main":
"/src_crx/src_content_script/main.tsx",
},
output: {
chunkFileNames: "[name].[hash].js",
assetFileNames: "[name].[hash].[ext]",
entryFileNames: "[name].js",
dir: "dist",
},
},
},
});