The base comes from [`npm create vite@latest`](https://vite.dev/guide/#scaffolding-your-first-vite-project) project with [Prettier](https://prettier.io/) added. It has been connected with the backend and authentication is in place. Reviewed-on: #2 Reviewed-by: erth9960 <thuning@dsv.su.se>
8 lines
168 B
TypeScript
8 lines
168 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react-swc";
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
});
|