-
Notifications
You must be signed in to change notification settings - Fork 426
/
vite.config.mts
176 lines (165 loc) · 4.48 KB
/
vite.config.mts
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
import path from "path";
import { createRequire } from "node:module";
import { VitePWA } from "vite-plugin-pwa";
import react from "@vitejs/plugin-react-swc";
import checker from "vite-plugin-checker";
import { viteStaticCopy } from "vite-plugin-static-copy";
import { treeShakeCareIcons } from "./plugins/treeShakeCareIcons";
import fs from "fs";
import { defineConfig } from "vite";
const pdfWorkerPath = path.join(
path.dirname(
createRequire(import.meta.url).resolve("pdfjs-dist/package.json"),
),
"build",
"pdf.worker.min.mjs",
);
const cdnUrls =
process.env.CARE_CDN_URL ??
[
"https://egov-s3-facility-10bedicu.s3.amazonaws.com",
"https://egov-s3-patient-data-10bedicu.s3.amazonaws.com",
"http://localhost:4566",
].join(" ");
function getPluginAliases() {
const pluginsDir = path.resolve(__dirname, "apps");
// Make sure the `apps` folder exists
if (!fs.existsSync(pluginsDir)) {
return {};
}
const pluginFolders = fs.readdirSync(pluginsDir);
const aliases = {};
pluginFolders.forEach((pluginFolder) => {
const pluginSrcPath = path.join(pluginsDir, pluginFolder, "src");
if (fs.existsSync(pluginSrcPath)) {
aliases[`@apps/${pluginFolder}`] = pluginSrcPath;
aliases[`@app-manifest/${pluginFolder}`] = path.join(
pluginSrcPath,
"manifest.ts",
);
}
});
return aliases;
}
function getPluginDependencies() {
const pluginsDir = path.resolve(__dirname, "apps");
// Make sure the `apps` folder exists
if (!fs.existsSync(pluginsDir)) {
return [];
}
const pluginFolders = fs.readdirSync(pluginsDir);
const dependencies = new Set();
pluginFolders.forEach((pluginFolder) => {
const packageJsonPath = path.join(pluginsDir, pluginFolder, "package.json");
if (fs.existsSync(packageJsonPath)) {
const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, "utf8"));
const pluginDependencies = packageJson.dependencies
? Object.keys(packageJson.dependencies)
: [];
pluginDependencies.forEach((dep) => dependencies.add(dep));
}
});
return Array.from(dependencies);
}
/** @type {import('vite').UserConfig} */
export default defineConfig({
envPrefix: "REACT_",
plugins: [
viteStaticCopy({
targets: [
{
src: pdfWorkerPath,
dest: "",
},
],
}),
react(),
checker({ typescript: true }),
treeShakeCareIcons({
iconWhitelist: ["default"],
}),
VitePWA({
strategies: "injectManifest",
srcDir: "src",
filename: "service-worker.ts",
injectRegister: "script-defer",
devOptions: {
enabled: true,
type: "module",
},
injectManifest: {
maximumFileSizeToCacheInBytes: 7000000,
},
manifest: {
name: "Care",
short_name: "Care",
theme_color: "#0e9f6e",
background_color: "#ffffff",
display: "standalone",
icons: [
{
src: "images/icons/pwa-64x64.png",
sizes: "64x64",
type: "image/png",
},
{
src: "images/icons/pwa-192x192.png",
sizes: "192x192",
type: "image/png",
},
{
src: "images/icons/pwa-512x512.png",
sizes: "512x512",
type: "image/png",
purpose: "any",
},
{
src: "images/icons/maskable-icon-512x512.png",
sizes: "512x512",
type: "image/png",
purpose: "maskable",
},
],
},
}),
],
resolve: {
alias: {
...getPluginAliases(),
"@": path.resolve(__dirname, "./src"),
"@careConfig": path.resolve(__dirname, "./care.config.ts"),
"@core": path.resolve(__dirname, "src/"),
},
},
optimizeDeps: {
include: getPluginDependencies(),
},
build: {
outDir: "build",
assetsDir: "bundle",
sourcemap: true,
rollupOptions: {
output: {
manualChunks(id) {
if (id.includes("node_modules")) {
return "vendor";
}
},
},
},
},
server: {
port: 4000,
},
preview: {
headers: {
"Content-Security-Policy-Report-Only": `default-src 'self';\
script-src 'self' blob: 'nonce-f51b9742' https://plausible.10bedicu.in;\
style-src 'self' 'unsafe-inline';\
connect-src 'self' https://plausible.10bedicu.in;\
img-src 'self' https://cdn.ohc.network ${cdnUrls};\
object-src 'self' ${cdnUrls};`,
},
port: 4000,
},
});