-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
39 lines (38 loc) · 902 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';
import fs from 'fs-extra';
export default defineConfig({
plugins: [
react(),
{
name: 'copy-extension-files',
writeBundle: async () => {
await fs.copy('manifest.json', 'dist/manifest.json');
await fs.copy('public/icons', 'dist/icons').catch((err) => {
console.error('Error copying icons:', err);
});
},
},
],
build: {
rollupOptions: {
input: {
popup: resolve(__dirname, 'popup.html'),
background: 'src/background.ts',
},
output: {
entryFileNames: '[name].js',
chunkFileNames: '[name].[hash].js',
assetFileNames: '[name].[ext]',
},
},
outDir: 'dist',
},
server: {
port: 5173,
open: '/popup.html',
cors: true,
},
base: '',
});