20 lines
374 B
TypeScript
20 lines
374 B
TypeScript
/// <reference types="vitest" />
|
|
|
|
import path from "node:path";
|
|
import legacy from "@vitejs/plugin-legacy";
|
|
import vue from "@vitejs/plugin-vue";
|
|
import { defineConfig } from "vite";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
vue(),
|
|
legacy(),
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src"),
|
|
},
|
|
},
|
|
});
|