-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvite.config.js
61 lines (60 loc) · 1.42 KB
/
vite.config.js
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
import Vue from '@vitejs/plugin-vue'
import Markdown from 'vite-plugin-md';
import { dirname, join, resolve } from "path";
import Icons from 'unplugin-icons/vite'
import IconsResolver from "unplugin-icons/resolver"
import Components from 'unplugin-vue-components/vite'
import { fileURLToPath } from 'url';
const _dirname = typeof __dirname !== 'undefined'
? __dirname
: dirname(fileURLToPath(import.meta.url))
/**
* @type {import('vite').UserConfig}
*/
export default {
plugins: [
Vue({
include: [/\.vue$/,/\.md$/]
}),
Markdown(),
Components({
resolvers: [
IconsResolver(),
],
}),
Icons({
autoInstall: true,
})
],
optimizeDeps: {
include:[ 'firebase/app', 'atmosphere-ui', 'firebase/analytics', 'firebase/messaging', 'firebase/auth'],
exclude: ["apexcharts"],
},
resolve: {
alias: {
'@': resolve('./src/'),
'@components': resolve('./src/components'),
},
},
build: {
rollupOptions: {
input: {
main: join(_dirname, 'index.html'),
nested: join(_dirname, 'pages/user-satisfaction.html'),
terms: join(_dirname, 'pages/terms.html'),
privacyPolicy: join(_dirname, 'pages/privacy-policy.html')
}
}
},
server: {
fs: {
// Allow serving files from one level up to the project root
allow: ['..']
},
port: 3000
},
test: {
environment: 'happy-dom',
global: true
}
}