-
Notifications
You must be signed in to change notification settings - Fork 1
/
vite.config.ts
48 lines (46 loc) · 1.09 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
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: process.env.CODECOV_TOKEN !== undefined,
bundleName: 'raindrop-sync-chrome',
uploadToken: process.env.CODECOV_TOKEN
})
],
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 }
}
};
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
//@ts-ignore
export default defineConfig(viteConfig);