-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvite.config.ts
78 lines (76 loc) · 1.99 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
import { sentryVitePlugin } from "@sentry/vite-plugin";
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import viteTsconfigPaths from "vite-tsconfig-paths";
import svgrPlugin from "vite-plugin-svgr";
import { resolve } from "path";
import { CONFIG } from "./sentryconfig";
import path from "path";
const plugins = [react(), viteTsconfigPaths(), svgrPlugin()];
if (CONFIG.SENTRY_ORG && CONFIG.SENTRY_PROJECT) {
plugins.push(sentryVitePlugin({
org: CONFIG.SENTRY_ORG,
project: CONFIG.SENTRY_PROJECT,
authToken: process.env.SENTRY_AUTH_TOKEN,
}));
}
// https://vitejs.dev/config/
export default defineConfig({
plugins,
server: {
open: true,
port: 3000,
},
build: {
rollupOptions: {
input: {
appbuilder: resolve(__dirname, "index.html"),
example: resolve(__dirname, "example.html"),
library: resolve(__dirname, "library.html"),
},
output: {
manualChunks: {
react: ["react", "react-dom", "react-router-dom"],
mantine: [
"@mantine/core",
"@mantine/hooks",
"@mantine/notifications",
],
mantineCharts: [
"@mantine/charts",
],
shapediver: [
"@shapediver/api.geometry-api-dto-v2",
"@shapediver/sdk.geometry-api-sdk-v2",
"@shapediver/sdk.platform-api-sdk-v1",
],
shapediverViewer: [
"@shapediver/viewer.session",
"@shapediver/viewer.viewport",
],
shapediverViewerMisc: [
"@shapediver/viewer.utils.mime-type",
"@shapediver/viewer.features.drawing-tools",
"@shapediver/viewer.features.gumball",
"@shapediver/viewer.features.interaction"
],
utils: ["immer", "zustand", "zod", "uuid", "gl-matrix"],
markdown: [
"react-markdown",
"remark-directive",
"remark-gfm",
"unist-util-visit",
],
icons: ["@tabler/icons-react"],
}
}
},
sourcemap: true
},
resolve: {
alias: {
"@AppBuilderShared": path.resolve(__dirname, "./src/shared"),
"~": path.resolve(__dirname, "./src"),
},
},
});