-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
54 lines (53 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 { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import dts from 'vite-plugin-dts';
import path from 'path';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
dts({
insertTypesEntry: true,
}),
],
define: {
__VUE_PROD_DEVTOOLS__: JSON.stringify(true),
},
resolve: {
// alias: [{ find: '@', replacement: path.resolve(__dirname, 'src') }],
alias: {
// vue: path.resolve('./node_modules/vue', 'dist', 'vue.runtime.esm-bundler.js'),
vue: path.resolve('./node_modules/vue'),
},
dedupe: ['vue'],
},
build: {
sourcemap: 'inline',
cssCodeSplit: true,
lib: {
entry: {
main: path.resolve(__dirname, 'src/index.ts'),
styles: path.resolve(__dirname, 'src/style.css'),
},
name: 'Core',
fileName: 'core',
},
rollupOptions: {
external: [
'@aws-sdk/client-s3',
'@aws-sdk/lib-storage',
'@rive-app/canva',
'axios',
'easymde',
'luxon',
'pinia',
'vue',
],
output: {
globals: {
vue: 'Vue',
},
},
},
},
});