-
Notifications
You must be signed in to change notification settings - Fork 15
/
vite.config.js
82 lines (75 loc) · 2.41 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import { defineConfig, loadEnv } from 'vite';
import laravel from 'laravel-vite-plugin';
import {ViteImageOptimizer} from "vite-plugin-image-optimizer";
import * as fs from 'fs'
export default defineConfig(({mode}) => {
Object.assign(process.env, loadEnv(mode, process.cwd()))
const {
VITE_SERVER_HMR_HOST = '0.0.0.0',
VITE_SERVER_HOST = '0.0.0.0',
VITE_SERVER_POLLING = true,
} = process.env
return {
plugins: [
laravel({
input: [
'resources/css/app.css',
'resources/sass/app.scss',
'resources/js/app.js',
],
refresh: true,
}),
ViteImageOptimizer({
test: /\.(jpe?g|png|gif|tiff|webp|svg|avif)$/i,
includePublic: true,
ansiColors: true,
png: {
// https://sharp.pixelplumbing.com/api-output#png
quality: 85,
},
jpeg: {
// https://sharp.pixelplumbing.com/api-output#jpeg
quality: 80,
},
jpg: {
// https://sharp.pixelplumbing.com/api-output#jpeg
quality: 80,
},
tiff: {
// https://sharp.pixelplumbing.com/api-output#tiff
quality: 100,
},
webp: {
// https://sharp.pixelplumbing.com/api-output#webp
lossless: true,
},
avif: {
// https://sharp.pixelplumbing.com/api-output#avif
lossless: true,
},
}),
],
server: {
hmr: {
host: VITE_SERVER_HMR_HOST,
},
host: VITE_SERVER_HOST,
https: httpsCertConfig(process.env),
watch: {
usePolling: VITE_SERVER_POLLING,
},
},
}
});
function httpsCertConfig(env) {
const {
VITE_HTTPS_CERT = null,
VITE_HTTPS_KEY = null
} = env
if (!VITE_HTTPS_CERT && !VITE_HTTPS_KEY) return false
if (!fs.existsSync(VITE_HTTPS_CERT) && !fs.existsSync(VITE_HTTPS_KEY)) return false
return {
cert: fs.readFileSync(VITE_HTTPS_CERT),
key: fs.readFileSync(VITE_HTTPS_KEY),
}
}