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 07:02:40 +08:00
|
|
|
import { createHtmlPlugin } from "vite-plugin-html";
|
2021-10-01 02:27:44 +08:00
|
|
|
import path from "path";
|
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());
|
|
|
|
|
|
|
|
return {
|
2022-02-03 07:02:40 +08:00
|
|
|
plugins: [
|
|
|
|
svgrPlugin(),
|
|
|
|
createHtmlPlugin({
|
|
|
|
inject: {
|
|
|
|
data: {
|
|
|
|
title: env.VITE_PRODUCT_NAME || "Matrix Video Chat",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
],
|
2021-12-18 08:30:10 +08:00
|
|
|
server: {
|
|
|
|
proxy: {
|
|
|
|
"/_matrix": env.VITE_DEFAULT_HOMESERVER || "http://localhost:8008",
|
|
|
|
},
|
2022-01-19 07:16:34 +08:00
|
|
|
fs: {
|
|
|
|
// Current we're bundling files linked in from matrix-react-sdk
|
|
|
|
// We should re-enable this if we plan to run Vite outside the dev server mode
|
|
|
|
strict: false,
|
|
|
|
},
|
2021-07-17 05:38:44 +08:00
|
|
|
},
|
2021-12-18 08:30:10 +08:00
|
|
|
resolve: {
|
|
|
|
alias: {
|
|
|
|
"$(res)": path.resolve(__dirname, "node_modules/matrix-react-sdk/res"),
|
|
|
|
},
|
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
|
|
|
});
|