forked from ramp4-pcar4/story-ramp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.mts
62 lines (60 loc) · 1.57 KB
/
vite.config.mts
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
55
56
57
58
59
60
61
62
import { defineConfig } from 'vite';
import type { UserConfigExport } from 'vite';
import vue from '@vitejs/plugin-vue';
import dsv from '@rollup/plugin-dsv';
import path from 'path';
import { viteStaticCopy } from 'vite-plugin-static-copy';
const baseConfig: UserConfigExport = {
plugins: [
vue(),
dsv(),
viteStaticCopy({
targets: [
{ src: 'scripts/*', dest: './scripts' },
{ src: 'help', dest: './' }
]
})
],
define: {
'process.env': process.env
},
base: './',
resolve: {
alias: {
'@storylines': path.resolve(__dirname, 'src')
}
},
build: {
target: 'esnext'
},
server: {
open: '/#/en/00000000-0000-0000-0000-000000000000'
}
};
export default defineConfig(() => {
if (process.argv.includes('plugin')) {
Object.assign(baseConfig.build!, {
lib: {
entry: path.resolve(__dirname, 'src/storylines-plugin.ts'),
name: 'StorylinesViewer',
fileName: 'storylines-viewer',
formats: ['umd']
},
rollupOptions: {
external: ['vue']
},
copyPublicDir: false
});
} else {
Object.assign(baseConfig.build!, {
rollupOptions: {
input: {
main: '/index.html',
en: '/index-ca-en.html',
fr: '/index-ca-fr.html'
}
}
});
}
return baseConfig;
});