mirror of
https://github.com/moghtech/komodo.git
synced 2025-12-17 18:14:52 -06:00
9 lines
220 B
TypeScript
9 lines
220 B
TypeScript
import { defineConfig } from "vite";
|
|
import tspaths from "vite-tsconfig-paths";
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react(), tspaths()],
|
|
});
|