35 lines
763 B
TypeScript
35 lines
763 B
TypeScript
import { defineConfig, loadEnv } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
import tsconfigPaths from "vite-tsconfig-paths";
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig(({ mode }) => {
|
|
const env = loadEnv(mode, process.cwd(), "");
|
|
const backend = env.VITE_DEV_BACKEND_URL || "http://localhost:8008";
|
|
|
|
return {
|
|
server: {
|
|
proxy: {
|
|
"/api": backend,
|
|
"/videos": backend,
|
|
"/mtx": "http://127.0.0.1:8889",
|
|
},
|
|
},
|
|
build: {
|
|
sourcemap: "hidden",
|
|
},
|
|
plugins: [
|
|
react({
|
|
babel: {
|
|
plugins: ["react-dev-locator"],
|
|
},
|
|
}),
|
|
tsconfigPaths(),
|
|
],
|
|
test: {
|
|
environment: "jsdom",
|
|
setupFiles: ["./src/test/setup.ts"],
|
|
},
|
|
};
|
|
});
|