mirror of
https://github.com/moghtech/komodo.git
synced 2026-04-29 04:10:01 -05: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()],
|
|
});
|