-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvite.config.ts
54 lines (52 loc) · 1.16 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
43
44
45
46
47
48
49
50
51
52
53
54
import { codecovVitePlugin } from '@codecov/vite-plugin';
import { crx } from '@crxjs/vite-plugin';
import { svelte } from '@sveltejs/vite-plugin-svelte';
import path from 'path';
import { nodePolyfills } from 'vite-plugin-node-polyfills';
import { defineConfig } from 'vitest/config';
import manifest from './src/manifest';
export const viteConfig = {
plugins: [
svelte(),
crx({ manifest }),
codecovVitePlugin({
enableBundleAnalysis: true,
bundleName: 'raindrop-sync-chrome',
oidc: {
useGitHubOIDC: true
}
})
],
resolve: {
alias: [
{ find: '~', replacement: path.resolve(__dirname, '/src') },
{ find: '^', replacement: path.resolve(__dirname, '/') }
]
},
optimizeDeps: {
esbuildOptions: {
define: {
global: 'globalThis'
}
}
},
build: {
target: 'esnext',
rollupOptions: {
plugins: [nodePolyfills()]
},
sourcemap: true
},
server: {
port: 5173,
strictPort: true,
hmr: { port: 5173 }
},
// https://github.com/crxjs/chrome-extension-tools/issues/971
legacy: {
skipWebSocketTokenCheck: true
}
};
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
//@ts-ignore
export default defineConfig(viteConfig);