-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
57 lines (51 loc) · 1.1 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
55
56
57
import { loadEnv, ConfigEnv, UserConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { resolve } from 'path'
import svgLoader from 'vite-svg-loader'
import { ViteEjsPlugin } from 'vite-plugin-ejs'
const CWD = process.cwd()
// https://vitejs.dev/config/
export default ({ command, mode }: ConfigEnv): UserConfig => {
const {
VITE_DIST_PATH,
VITE_ASSETS_PATH,
VITE_META_PATH,
} = loadEnv(mode, CWD)
const metaData = {
asset_base: VITE_META_PATH,
title: 'Title',
description: '',
og_title: '',
og_url: '',
}
const inputSource = {
main: resolve(__dirname, 'index.html'),
}
return {
base: VITE_ASSETS_PATH,
build: {
outDir: VITE_DIST_PATH,
rollupOptions: {
input: inputSource,
},
},
esbuild: {
drop: (
(command == 'build')
&& (mode != 'with-debug'))
? ['console', 'debugger']
: [],
},
plugins: [
vue(),
svgLoader({
svgo: false,
defaultImport: 'url',
}),
ViteEjsPlugin(metaData),
],
server: {
host: '0.0.0.0',
},
}
}