-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvite.config.js
33 lines (31 loc) · 982 Bytes
/
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
import { ViteWebfontDownload } from 'vite-plugin-webfont-dl';
// import { dependencies } from './package.json';
// function renderChunks(deps) { // https://vitejs.dev/config/
// let chunks = {};
// Object.keys(deps).forEach((key) => {
// if (['@fortawesome/fontawesome-free'].includes(key)) return;
// chunks[key] = [key];
// });
// return chunks;
// }
export default {
plugins: [
ViteWebfontDownload([
'https://fonts.googleapis.com/css2?family=Fira+Sans:wght@100;200;300;400;500;600;700&display=swap',
]),
],
optimizeDeps: {
exclude: ['@fortawesome/fontawesome-free'],
},
// build: {
// // sourcemap: false,
// rollupOptions: {
// output: {
// manualChunks: {
// vendor: ['@fortawesome/fontawesome-free'],
// ...renderChunks(dependencies),
// },
// },
// },
// },
};