// Copyright 2022 The Matrix.org Foundation C.I.C. // // 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. /// import react from "@vitejs/plugin-react"; import { defineConfig } from "vite"; import codegen from "vite-plugin-graphql-codegen"; import svgr from "vite-plugin-svgr"; export default defineConfig((env) => ({ base: "/app/", build: { manifest: true, assetsDir: "", sourcemap: true, }, plugins: [ codegen(), react({ babel: { plugins: [ [ "jotai/babel/plugin-react-refresh", { customAtomNames: [ "mapQueryAtom", "atomWithPagination", "atomWithCurrentPagination", ], }, ], [ "jotai/babel/plugin-debug-label", { customAtomNames: [ "mapQueryAtom", "atomWithPagination", "atomWithCurrentPagination", ], }, ], ], }, }), svgr({ exportAsDefault: true, esbuildOptions: { // This makes sure we're using the same JSX runtime as React itself jsx: "automatic", jsxDev: env.mode === "development", }, svgrOptions: { // Using 1em in order to make SVG size inherits from text size. icon: "1em", svgProps: { // Adding a class in case we want to add global overrides, but one // should probably stick to using CSS modules most of the time className: "cpd-icon", }, }, }), ], server: { proxy: { // Routes mostly extracted from crates/router/src/endpoints.rs "^/(|graphql.*|assets.*|\\.well-known.*|oauth2.*|login.*|logout.*|register.*|reauth.*|account.*|consent.*|_matrix.*|complete-compat-sso.*)$": "http://127.0.0.1:8080", }, }, test: { coverage: { provider: "c8", src: ["./src/"], exclude: ["**/gql/**", "**/*.d.ts", "**/*.stories.*"], all: true, }, }, }));