-
Notifications
You must be signed in to change notification settings - Fork 82
/
vite.config.js
48 lines (47 loc) · 1.24 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
import { defineConfig } from 'vite';
import { glob } from 'glob';
import injectHTML from 'vite-plugin-html-inject';
import FullReload from 'vite-plugin-full-reload';
import SortCss from 'postcss-sort-media-queries';
export default defineConfig(({ command }) => {
return {
define: {
[command === 'serve' ? 'global' : '_global']: {},
},
root: 'src',
build: {
sourcemap: true,
rollupOptions: {
input: glob.sync('./src/*.html'),
output: {
manualChunks(id) {
if (id.includes('node_modules')) {
return 'vendor';
}
},
entryFileNames: chunkInfo => {
if (chunkInfo.name === 'commonHelpers') {
return 'commonHelpers.js';
}
return '[name].js';
},
assetFileNames: assetInfo => {
if (assetInfo.name && assetInfo.name.endsWith('.html')) {
return '[name].[ext]';
}
return 'assets/[name]-[hash][extname]';
},
},
},
outDir: '../dist',
emptyOutDir: true,
},
plugins: [
injectHTML(),
FullReload(['./src/**/**.html']),
SortCss({
sort: 'mobile-first',
}),
],
};
});