mirror of
https://github.com/sp-tarkov/db-website.git
synced 2025-02-08 07:10:47 -05:00
16 lines
415 B
TypeScript
16 lines
415 B
TypeScript
|
import path from "node:path";
|
||
|
import { defineConfig } from "vite";
|
||
|
import react from "@vitejs/plugin-react";
|
||
|
|
||
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
|
plugins: [react()],
|
||
|
resolve: {
|
||
|
alias: {
|
||
|
"@src": path.resolve(process.cwd(), "src"),
|
||
|
"@support": path.resolve(process.cwd(), "cypress/support"),
|
||
|
"@fixtures": path.resolve(process.cwd(), "cypress/fixtures")
|
||
|
}
|
||
|
}
|
||
|
});
|