forked from ohcnetwork/care_fe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
146 lines (144 loc) · 3.62 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react-swc";
import { VitePWA } from "vite-plugin-pwa";
import { resolve } from "path";
import { promises as fs } from "fs";
export default defineConfig({
envPrefix: "REACT_",
plugins: [
react(),
VitePWA({
strategies: "injectManifest",
srcDir: "src",
filename: "service-worker.ts",
injectRegister: null,
injectManifest: {
maximumFileSizeToCacheInBytes: 7000000,
},
manifest: {
name: "Care",
short_name: "Care",
theme_color: "#33bb17",
background_color: "#2196f3",
icons: [
{
src: "https://cdn.coronasafe.network/care-manifest/images/icons/icon-192x192.png",
sizes: "192x192",
type: "image/png",
purpose: "any maskable",
},
{
src: "https://cdn.coronasafe.network/care-manifest/images/icons/icon-192x192.png",
sizes: "192x192",
type: "image/png",
},
{
src: "https://cdn.coronasafe.network/care-manifest/images/icons/icon-512x512.png",
sizes: "512x512",
type: "image/png",
},
],
},
}),
],
build: {
outDir: "build",
rollupOptions: {
output: {
manualChunks(id) {
if (id.includes("node_modules")) {
return "vendor";
}
},
},
},
commonjsOptions: {
// workaround for react-phone-input-2 https://github.com/vitejs/vite/issues/2139#issuecomment-1405624744
defaultIsModuleExports(id) {
try {
// eslint-disable-next-line @typescript-eslint/no-var-requires
const module = require(id);
if (module?.default) {
return false;
}
return "auto";
} catch (error) {
return "auto";
}
},
transformMixedEsModules: true,
},
},
server: {
port: 4000,
proxy: {
"/api": {
target: "https://careapi.ohc.network",
changeOrigin: true,
},
},
},
preview: {
port: 4000,
proxy: {
"/api": {
target: "https://careapi.ohc.network",
changeOrigin: true,
},
},
},
esbuild: {
loader: "tsx",
include: [/src\/.*\.[tj]sx?$/],
exclude: [/src\/stories/],
},
define: {
// for unconventional usage of global by third party libraries
global: "window",
},
resolve: {
alias: [
{
// to revert the above workaround for jss-plugin used by material-ui
find: /^jss-plugin-(.*)$/,
replacement: "$1",
customResolver: (id) => {
if (id === "window") {
id = "global";
}
return resolve(
__dirname,
`./node_modules/jss-plugin-${id}/src/index.js`
);
},
},
{
// to revert the above wokraround for global-cache used by react-dates
find: /^(.*)-cache$/,
replacement: "$1",
customResolver: (id) => {
if (id === "window") {
id = "global";
}
return resolve(__dirname, `./node_modules/${id}-cache/index.js`);
},
},
],
},
optimizeDeps: {
esbuildOptions: {
plugins: [
// again thanks to thirdparty libraries for using jsx in js files
{
name: "load-js-files-as-jsx",
setup(build) {
build.onLoad({ filter: /src\/.*\.js$/ }, async (args) => ({
loader: "jsx",
contents: await fs.readFile(args.path, "utf8"),
}));
},
},
],
},
},
});