mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-09-26 23:48:57 +03:00
* update docusaurus to 3.10.2 * bump @types/node to 25.9.6 and ES2022 target ES2022, which already includes ES2020 and ES2021.String, so the lib list was also trimmed * bump vite to 8.3.0 and vitest to 4.1.11 Swap `@vitejs/plugin-react-swc` for `@vitejs/plugin-react` and add `esbuild` as a devDependency, since `vite-plugin-monaco-editor` requires it and Vite 8 no longer ships it. `keepNames` moves to `build.rolldownOptions.output` because Vite 8 ignores the `esbuild` block. Rolldown's minifier now writes the preload helper's base path as a template literal instead of a double-quoted string, so the nginx `sub_filter` for `return"/BASE_PATH/"` stopped matching and lazy-loaded chunks and their CSS were requested from a literal `/BASE_PATH/` under Home Assistant ingress. The rule now matches the backtick form. * bump apexcharts to 7.3.0 and react-apexcharts to 2.1.1 Under Vite 8, a default import from a CommonJS package resolves to its whole `module.exports` when `package.json` has `"type": "module"`, so react-apexcharts 1.4.1 handed React an object and every chart crashed. 2.x ships an ESM build. apexcharts 7 no longer sets `window.ApexCharts`, so the chart components now import it for `ApexCharts.exec`, and `ApexAxisChartSeries` is derived in `types/graph.ts` because it's no longer a global type. * remove unused immer dep * remove unused cython pin from tensorrt requirements The pin was added alongside tensorrt 8.5.3 and cuda-python 11.8, which needed Cython to build, and both have since been dropped from this file. Nothing imports Cython at runtime, and `pip3 wheel` runs with build isolation, so any source build gets its own build dependencies. The pin only installed an unused Cython wheel into the TensorRT image. * require node 20.19 for docs
81 lines
1.8 KiB
TypeScript
81 lines
1.8 KiB
TypeScript
/// <reference types="vitest/config" />
|
|
import path, { resolve } from "path";
|
|
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import monacoEditorPlugin from "vite-plugin-monaco-editor";
|
|
|
|
const proxyHost = process.env.PROXY_HOST || "localhost:5000";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
define: {
|
|
"import.meta.vitest": "undefined",
|
|
},
|
|
server: {
|
|
proxy: {
|
|
"/api": {
|
|
target: `http://${proxyHost}`,
|
|
ws: true,
|
|
},
|
|
"/vod": {
|
|
target: `http://${proxyHost}`,
|
|
},
|
|
"/clips": {
|
|
target: `http://${proxyHost}`,
|
|
},
|
|
"/exports": {
|
|
target: `http://${proxyHost}`,
|
|
},
|
|
"/ws": {
|
|
target: `ws://${proxyHost}`,
|
|
ws: true,
|
|
},
|
|
"/live": {
|
|
target: `ws://${proxyHost}`,
|
|
changeOrigin: true,
|
|
ws: true,
|
|
},
|
|
},
|
|
},
|
|
build: {
|
|
rolldownOptions: {
|
|
input: {
|
|
main: resolve(import.meta.dirname, "index.html"),
|
|
login: resolve(import.meta.dirname, "login.html"),
|
|
},
|
|
output: {
|
|
keepNames: true,
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
react(),
|
|
monacoEditorPlugin.default({
|
|
customWorkers: [{ label: "yaml", entry: "monaco-yaml/yaml.worker" }],
|
|
languageWorkers: ["editorWorkerService"], // we don't use any of the default languages
|
|
}),
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(import.meta.dirname, "./src"),
|
|
},
|
|
},
|
|
test: {
|
|
environment: "jsdom",
|
|
alias: {
|
|
"testing-library": path.resolve(
|
|
import.meta.dirname,
|
|
"./__test__/testing-library.js",
|
|
),
|
|
},
|
|
setupFiles: ["./__test__/test-setup.ts"],
|
|
includeSource: ["src/**/*.{js,jsx,ts,tsx}"],
|
|
coverage: {
|
|
reporter: ["text-summary", "text"],
|
|
},
|
|
mockReset: true,
|
|
restoreMocks: true,
|
|
globals: true,
|
|
},
|
|
});
|