element-call-Github/vite.config.js

84 lines
2.1 KiB
JavaScript
Raw Normal View History

2021-07-17 05:38:44 +08:00
/*
Copyright 2021 New Vector Ltd
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
2021-12-18 08:30:10 +08:00
import { defineConfig, loadEnv } from "vite";
2021-08-20 03:11:12 +08:00
import svgrPlugin from "vite-plugin-svgr";
2022-02-03 13:48:44 +08:00
import htmlTemplate from "vite-plugin-html-template";
2023-09-19 00:02:35 +08:00
import { sentryVitePlugin } from "@sentry/vite-plugin";
import react from "@vitejs/plugin-react";
import basicSsl from "@vitejs/plugin-basic-ssl";
2021-07-17 05:22:03 +08:00
// https://vitejs.dev/config/
2021-12-18 08:30:10 +08:00
export default defineConfig(({ mode }) => {
const env = loadEnv(mode, process.cwd());
const plugins = [
react(),
basicSsl(),
svgrPlugin({
svgrOptions: {
// This enables ref forwarding on SVGR components, which is needed, for
// example, to make tooltips on icons work
ref: true,
},
}),
htmlTemplate.default({
data: {
title: env.VITE_PRODUCT_NAME || "Element Call",
},
}),
];
if (
process.env.SENTRY_ORG &&
process.env.SENTRY_PROJECT &&
process.env.SENTRY_AUTH_TOKEN &&
process.env.SENTRY_URL
) {
plugins.push(
sentryVitePlugin({
include: "./dist",
release: process.env.VITE_APP_VERSION,
})
);
}
2021-12-18 08:30:10 +08:00
return {
server: {
port: 3000,
},
2022-04-28 03:11:59 +08:00
build: {
sourcemap: true,
},
plugins,
2021-12-18 08:30:10 +08:00
resolve: {
2022-07-15 23:24:38 +08:00
alias: {
// matrix-widget-api has its transpiled lib/index.js as its entry point,
// which Vite for some reason refuses to work with, so we point it to
// src/index.ts instead
"matrix-widget-api": "matrix-widget-api/src/index.ts",
},
2022-01-22 05:21:23 +08:00
dedupe: [
"react",
"react-dom",
"matrix-js-sdk",
"react-use-measure",
"@juggle/resize-observer",
],
2021-10-01 02:27:44 +08:00
},
2021-12-18 08:30:10 +08:00
};
2021-07-17 05:38:44 +08:00
});