-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathvite.config.js
90 lines (86 loc) · 2.19 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
83
84
85
86
87
88
89
90
import { defineConfig } from "vite";
import babelPlugin from "vite-plugin-babel";
import { VitePWA } from "vite-plugin-pwa";
import { nodePolyfills } from "vite-plugin-node-polyfills";
import pJson from "./package.json" with { type: "json" };
import { webfontDownload } from "vite-plugin-webfont-dl";
export default defineConfig({
assetsInclude: ["src/**/*.html"],
plugins: [
{
name: "wrap-i18n-as-module-plugin",
enforce: "pre",
async transform(code, id) {
if (!isAngularLocaleFile(id)) return code;
return `export default function() {\n${code}\n};`;
},
},
webfontDownload(),
nodePolyfills({ include: ["events"] }), // https://github.com/vitejs/vite/issues/9238
babelPlugin(),
VitePWA({
registerType: "autoUpdate",
manifest: {
name: "Financier",
icons: [
{
src: "/icons/android-chrome-192x192.png",
sizes: "192x192",
type: "image/png",
},
{
src: "/icons/android-chrome-512x512.png",
sizes: "512x512",
type: "image/png",
},
],
theme_color: "#76b852",
start_url: "/",
display: "standalone",
},
workbox: {
globPatterns: ["**/*.{js,css,html,woff2,woff,ttf,svg,eot}"],
navigateFallbackDenylist: [/^\/(api|docs|manage|db)\/?/, /^\/_/, /^_/],
ignoreURLParametersMatching: [/^v$/], // cache busting ?v= for font-awesome
},
}),
],
css: {
preprocessorOptions: {
scss: {
quietDeps: true,
silenceDeprecations: [
"import",
"slash-div",
"global-builtin",
"color-functions",
"mixed-decls",
"legacy-js-api",
],
},
},
},
define: {
VERSION: {
number: pJson.version,
date: pJson.releaseDate,
},
},
build: {
rollupOptions: {
output: {
manualChunks(id) {
if (isAngularLocaleFile(id)) return "i18n";
},
},
},
},
test: {
environment: "jsdom",
setupFiles: ["./testSetup"],
globals: true,
},
});
function isAngularLocaleFile(file) {
return file.includes("/angular-locale_");
}