-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvite.config.ts
39 lines (38 loc) · 971 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
38
39
import { defineConfig } from 'vite';
import { resolve } from 'path';
import react from '@vitejs/plugin-react-swc';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
react(),
{
name: "custom-dynamic-import",
renderDynamicImport() {
return {
left: `
{
const dynamicImport = (path) => import(path);
dynamicImport(
`,
right: ")}",
};
},
}
],
build: {
rollupOptions: {
input: {
popup: resolve(__dirname, 'popup.html'),
options: resolve(__dirname, 'options.html'),
service_worker: resolve(__dirname, 'src/background.ts'),
content_script: resolve(__dirname, 'src/content_script.ts'),
},
output: {
chunkFileNames: 'chunk/[name].[hash].js',
assetFileNames: 'assets/[name].[hash].[ext]',
entryFileNames: '[name].js',
dir: 'dist',
},
},
},
});