forked from VueTorrent/VueTorrent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
93 lines (90 loc) · 2.6 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
87
88
89
90
91
92
93
/// <reference types="vitest" />
import vue from '@vitejs/plugin-vue'
import { fileURLToPath, URL } from 'node:url'
import { defineConfig, loadEnv } from 'vite'
import vuetify from 'vite-plugin-vuetify'
import { VitePWA } from 'vite-plugin-pwa'
import { resolve } from 'node:path'
// https://vitejs.dev/config/
export default defineConfig(({ command, mode }) => {
const env = loadEnv(mode, process.cwd())
const qBittorrentPort = env.VITE_QBITTORRENT_PORT ?? '8080'
const proxyTarget = env.VITE_QBITTORRENT_TARGET ?? 'http://127.0.0.1'
const version = command === 'build' ? process.env.npm_package_version : JSON.stringify(process.env.npm_package_version)
return {
base: './',
build: {
target: 'esnext',
outDir: './vuetorrent/public',
rollupOptions: {
output: {
manualChunks: {
// apexcharts: ['apexcharts', 'vue3-apexcharts'],
faker: ['@faker-js/faker'],
vue: ['vue', 'vue-router', 'vue-i18n', 'vue3-toastify', 'vuedraggable', 'pinia', 'pinia-plugin-persist'],
vuetify: ['vuetify']
}
}
}
},
define: {
'import.meta.env.VITE_PACKAGE_VERSION': version,
'process.env': {}
},
plugins: [
vue(),
vuetify(),
VitePWA({
includeAssets: ['favicon.ico', 'icon.svg', 'icon-192.png', 'icon-512.png', 'robots.txt'],
manifest: {
name: 'VueTorrent',
short_name: 'VueTorrent',
theme_color: '#597566',
start_url: '.',
background_color: '#000',
icons: [
{ src: './icon-192.png', type: 'image/png', sizes: '192x192' },
{ src: './icon-512.png', type: 'image/png', sizes: '512x512' }
]
},
// Other options
registerType: 'autoUpdate',
base: './',
useCredentials: true,
workbox: {
maximumFileSizeToCacheInBytes: 10_000_000,
skipWaiting: true,
globPatterns: ['**/*.{js,css,html,ico,png,svg,woff,woff2}']
}
})
],
publicDir: './public',
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
server: {
host: '0.0.0.0',
port: 3000,
proxy: {
'/api': {
target: `${proxyTarget}:${qBittorrentPort}`,
secure: false
}
}
},
test: {
environment: 'jsdom',
setupFiles: [resolve(__dirname, 'tests/setup.ts')],
coverage: {
reportsDirectory: './tests/unit/coverage'
},
server: {
deps: {
inline: ['vuetify']
}
}
}
}
})