-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.mjs
50 lines (45 loc) · 1.05 KB
/
vite.config.mjs
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
import path from 'path';
import vue from '@vitejs/plugin-vue';
import { createHtmlPlugin } from 'vite-plugin-html';
process.env.TARGET = process.env.TARGET || 'web';
const isCordova = process.env.TARGET === 'cordova';
const SRC_DIR = path.resolve(__dirname, './src');
const PUBLIC_DIR = path.resolve(__dirname, './public');
const BUILD_DIR = path.resolve(
__dirname,
isCordova ? './cordova/www' : './www',
);
export default async () => {
return {
plugins: [
vue({ template: { compilerOptions: { isCustomElement: (tag) => tag.includes('swiper-') } } }),,
createHtmlPlugin({
minify: false,
inject: {
data: {
TARGET: process.env.TARGET,
},
},
}),
],
root: SRC_DIR,
base: '',
publicDir: PUBLIC_DIR,
build: {
outDir: BUILD_DIR,
assetsInlineLimit: 0,
emptyOutDir: true,
rollupOptions: {
treeshake: false,
},
},
resolve: {
alias: {
'@': SRC_DIR,
},
},
server: {
host: true,
},
};
}