mirror of
https://github.com/khairul169/loli-license.git
synced 2025-12-15 17:41:08 +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",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
});
|