mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-28 19:30:57 +00:00
28 lines
719 B
TypeScript
28 lines
719 B
TypeScript
import path from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
|
|
/// <reference types="vitest/config" />
|
|
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
|
|
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
|
|
export default defineConfig({
|
|
plugins: [react(), tailwindcss()],
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src"),
|
|
// Resolve from TS source so Vite gets ESM named exports (dist is CommonJS).
|
|
"@edr/types": path.resolve(__dirname, "../../../packages/types/src/index.ts"),
|
|
},
|
|
},
|
|
server: {
|
|
port: 5183,
|
|
host: "0.0.0.0",
|
|
},
|
|
test: {
|
|
environment: "node",
|
|
},
|
|
});
|