repos / starfx

a micro-mvc framework for react apps
git clone https://github.com/neurosnap/starfx.git

starfx / examples / basic
Eric Bower  ·  2025-06-06

vite.config.ts

1import { defineConfig } from "vite";
2import react from "@vitejs/plugin-react";
3
4// https://vitejs.dev/config/
5export default defineConfig({
6  plugins: [react()],
7});