mirror of
https://github.com/moghtech/komodo.git
synced 2026-04-29 21:27:26 -05:00
14 lines
323 B
TypeScript
14 lines
323 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import tsconfigPaths from "vite-tsconfig-paths";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react(), tsconfigPaths()],
|
|
// resolve: {
|
|
// alias: {
|
|
// "@monitor/client": "../client/ts"
|
|
// }
|
|
// }
|
|
});
|