-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvite.config.ts
55 lines (50 loc) · 1.28 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
import { defineConfig, loadEnv } from 'vite'
import type { UserConfigExport, ConfigEnv } from 'vite'
import { resolve } from 'path'
import vue from '@vitejs/plugin-vue'
// import vueDevTools from 'vite-plugin-vue-devtools'
// https://vitejs.dev/config/
const baseConfig: UserConfigExport = {
plugins: [
vue(),
// vueDevTools() // uncomment this line to enable vue devtools
],
resolve: {
alias: [
{
find: '@',
replacement: resolve(__dirname, './src'),
},
],
},
css: {
preprocessorOptions: {
less: {
javascriptEnabled: true,
},
},
},
}
export default (configEnv: ConfigEnv) => {
// sample
setTimeout(() => {
const envVariables = {
...process.env,
...loadEnv(configEnv.mode, process.cwd()),
}
const filteredData = Object.entries(envVariables)
.filter(([key]) => /(NODE|VITE)/.test(key))
.map(([key, value]) => {
return {
key: key.trim(),
value: value?.trim().slice(0, 50),
}
})
console.log('👋🏻🌎. ⬇️env variables, which contains VITE and NODE prefixes')
filteredData.forEach((item) => {
console.log(` key: ${item.key}, value: ${item.value}`)
})
}, 10)
// end sample
return defineConfig({ ...baseConfig })
}