mirror of
https://github.com/khairul169/loli-license.git
synced 2025-06-17 17:19:35 +07:00
13 lines
223 B
TypeScript
13 lines
223 B
TypeScript
|
import { defineConfig } from "vite";
|
||
|
import react from "@vitejs/plugin-react";
|
||
|
|
||
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
|
plugins: [react()],
|
||
|
resolve: {
|
||
|
alias: {
|
||
|
"~": "/src",
|
||
|
},
|
||
|
},
|
||
|
});
|