-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
86 lines (84 loc) · 1.73 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import path from 'path';
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import WindiCSS from 'vite-plugin-windicss';
import ViteComponents, { HeadlessUiResolver } from 'vite-plugin-components';
import Icons, { ViteIconsResolver } from 'vite-plugin-icons';
import { copyVuePlugin } from './plugins/copy-vue';
const dir = path.resolve(__dirname, 'src');
// https://vitejs.dev/config/
export default defineConfig({
build: {},
plugins: [
vue(),
copyVuePlugin(),
WindiCSS({
scan: {
include: [`${dir}/**/*.{vue,html,jsx,tsx}`, 'index.html']
}
}),
ViteComponents({
globalComponentsDeclaration: true,
customComponentResolvers: [
ViteIconsResolver({
componentPrefix: ''
}),
HeadlessUiResolver()
]
}),
Icons()
// VitePWA({
// base: '/',
// }),
],
resolve: {
alias: {
'~/': `${dir}/`,
'@vue/compiler-sfc': '@vue/compiler-sfc/dist/compiler-sfc.esm-browser.js'
}
},
optimizeDeps: {
exclude: [
'consolidate',
'velocityjs',
'dustjs-linkedin',
'atpl',
'liquor',
'twig',
'ejs',
'eco',
'jazz',
'hamljs',
'hamlet',
'jqtpl',
'whiskers',
'haml-coffee',
'hogan.js',
'templayed',
'handlebars',
'underscore',
'lodash',
'walrus',
'mustache',
'just',
'ect',
'mote',
'toffee',
'dot',
'bracket-template',
'ractive',
'htmling',
'babel-core',
'plates',
'react-dom/server',
'react',
'vash',
'slm',
'marko',
'teacup/lib/express',
'coffee-script',
'squirrelly',
'twing'
]
}
});