forked from sbrin/lopaka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
42 lines (41 loc) · 945 Bytes
/
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
import basicSsl from '@vitejs/plugin-basic-ssl';
import vue from '@vitejs/plugin-vue';
import {resolve} from 'path';
import {defineConfig} from 'vite';
import iconsPackPlugin from './vite-plugins/icons-pack';
export default defineConfig({
base: '',
plugins: [vue(), basicSsl(), iconsPackPlugin],
esbuild: {
keepNames: true
},
css: {
preprocessorOptions: {
less: {
javascriptEnabled: true,
math: 'always'
}
}
},
resolve: {
alias: {
vue: 'vue/dist/vue.esm-bundler.js'
}
},
build: {
assetsInlineLimit: 0,
sourcemap: true,
rollupOptions: {
treeshake: true,
input: {
app: resolve(__dirname, 'index.html')
}
}
},
define: {},
server: {
https: true,
port: 3000,
host: '0.0.0.0'
}
});