-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
43 lines (43 loc) · 1.25 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
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import path from 'path';
import dts from 'vite-plugin-dts';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react(), dts({ include: ['lib'] })],
resolve: {
alias: {
src: path.resolve(__dirname, 'src'),
public: path.resolve(__dirname, 'public'),
lib: path.resolve(__dirname, 'lib'),
},
},
build: {
lib: {
entry: path.resolve(__dirname, 'lib/main.ts'),
formats: ['es'],
},
copyPublicDir: false, // ! disable copy public folder
rollupOptions: {
external: [
'react',
'react/jsx-runtime',
'@emotion/react',
'@emotion/styled',
'react-router-dom',
'@mui',
'viem',
'wagmi',
'@tanstack/react-query',
'jotai',
'axios',
'react-quill',
'react-toastify',
'jwt-decode',
'bignumber.js',
'crypto-token-icon',
'date-fns',
], // ! remove the code from bundle
},
},
});