-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathvite.config.js
41 lines (40 loc) · 943 Bytes
/
vite.config.js
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
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import { resolve } from 'path';
import { crx } from '@crxjs/vite-plugin';
import manifest from './manifest.json';
export default defineConfig({
plugins: [vue(), crx({ manifest })],
resolve: {
alias: {
'@': resolve(__dirname, 'src'),
},
},
root: resolve(__dirname, 'src'),
publicDir: resolve(__dirname, 'public'),
build: {
outDir: resolve(__dirname, 'dist'),
rollupOptions: {
input: {
app: '/ext/browser/index.html',
},
},
minify: 'terser',
sourcemap: false,
// https://developer.chrome.com/docs/webstore/program_policies/#:~:text=Code%20Readability%20Requirements
terserOptions: {
mangle: false,
compress: {
drop_console: true,
drop_debugger: true,
},
},
},
server: {
port: 5173,
strictPort: true,
hmr: {
port: 5173,
},
},
});