mirror of
https://github.com/pheralb/svgl.git
synced 2024-11-10 14:46:54 +08:00
16 lines
299 B
TypeScript
16 lines
299 B
TypeScript
|
import * as path from "path";
|
||
|
import { defineConfig } from "vitest/config";
|
||
|
import react from "@vitejs/plugin-react";
|
||
|
|
||
|
export default defineConfig({
|
||
|
plugins: [react()],
|
||
|
test: {
|
||
|
environment: "jsdom",
|
||
|
},
|
||
|
resolve: {
|
||
|
alias: {
|
||
|
"@": path.resolve(__dirname, "./src"),
|
||
|
},
|
||
|
},
|
||
|
});
|