1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-06 05:42:30 +03:00
Files
authentication-service/frontend/vite.config.ts
Quentin Gliech f67cc0d6d0 Frontend cleanups
Mainly:

 - better handling of GraphQL errors
 - better logout state
 - dependencies update
 - a way to end browser sessions in the GraphQL API
2023-06-20 16:53:53 +02:00

94 lines
2.5 KiB
TypeScript

// 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.
/// <reference types="vitest" />
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,
},
},
}));