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";
|
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 {
|
|
|
|
plugins: [svgrPlugin()],
|
|
|
|
server: {
|
|
|
|
proxy: {
|
|
|
|
"/_matrix": env.VITE_DEFAULT_HOMESERVER || "http://localhost:8008",
|
|
|
|
},
|
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"),
|
|
|
|
},
|
|
|
|
dedupe: ["react", "react-dom", "matrix-js-sdk"],
|
2021-10-01 02:27:44 +08:00
|
|
|
},
|
2021-12-18 08:30:10 +08:00
|
|
|
};
|
2021-07-17 05:38:44 +08:00
|
|
|
});
|