mirror of
https://github.com/gnmyt/myspeed.git
synced 2025-12-20 12:29:36 -06:00
12 lines
259 B
JavaScript
12 lines
259 B
JavaScript
import {defineConfig} from "vite"
|
|
import react from "@vitejs/plugin-react";
|
|
import path from "path";
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src"),
|
|
},
|
|
}
|
|
}); |