mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
bdebb99b5a
* fixup build * swap frontends
55 lines
1.3 KiB
TypeScript
55 lines
1.3 KiB
TypeScript
/// <reference types="vitest" />
|
|
import path from 'path';
|
|
import { defineConfig } from 'vite';
|
|
import preact from '@preact/preset-vite';
|
|
import monacoEditorPlugin from 'vite-plugin-monaco-editor';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
define: {
|
|
'import.meta.vitest': 'undefined',
|
|
},
|
|
server: {
|
|
proxy: {
|
|
'/api': {
|
|
target: 'http://localhost:5000'
|
|
},
|
|
'/vod': {
|
|
target: 'http://localhost:5000'
|
|
},
|
|
'/exports': {
|
|
target: 'http://localhost:5000'
|
|
},
|
|
'/ws': {
|
|
target: 'ws://localhost:5000',
|
|
ws: true,
|
|
},
|
|
'/live': {
|
|
target: 'ws://localhost:5000',
|
|
changeOrigin: true,
|
|
ws: true,
|
|
},
|
|
}
|
|
},
|
|
plugins: [
|
|
preact(),
|
|
monacoEditorPlugin.default({
|
|
customWorkers: [{ label: 'yaml', entry: 'monaco-yaml/yaml.worker' }],
|
|
languageWorkers: ['editorWorkerService'], // we don't use any of the default languages
|
|
}),
|
|
],
|
|
test: {
|
|
environment: 'jsdom',
|
|
alias: {
|
|
'testing-library': path.resolve(__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,
|
|
},
|
|
}); |