mirror of
https://github.com/logos-storage/logos-storage-marketplace-ui.git
synced 2026-01-07 16:03:06 +00:00
9 lines
255 B
TypeScript
9 lines
255 B
TypeScript
|
|
import { TanStackRouterVite } from "@tanstack/router-plugin/vite";
|
||
|
|
import react from "@vitejs/plugin-react";
|
||
|
|
import { defineConfig } from "vite";
|
||
|
|
|
||
|
|
// https://vitejs.dev/config/
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [TanStackRouterVite(), react()],
|
||
|
|
});
|