-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvite.config.ts
46 lines (44 loc) · 1.15 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
import { resolve } from 'path';
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react-swc';
import dts from 'vite-plugin-dts';
// Check if the build is running on Vercel
const isVercel = process.env.VERCEL === '1';
export default defineConfig({
plugins: [react(), dts()],
resolve: {
alias: {
'@': resolve(__dirname, './src'),
},
},
build: isVercel
? {
outDir: 'dist', // output build files to 'dist' directory
emptyOutDir: true, // empty the output directory before build
rollupOptions: {
input: resolve(__dirname, 'index.html'), // entry point for the application
},
}
: {
lib: {
entry: resolve(__dirname, 'index.ts'),
name: 'Aleph',
fileName: (format) => `index.${format}.js`,
},
cssCodeSplit: false,
rollupOptions: {
external: ['react', 'react-dom'],
output: {
globals: {
react: 'React',
'react-dom': 'ReactDOM',
},
},
},
sourcemap: true,
emptyOutDir: true,
},
server: {
port: 3000,
},
});