Files
aegis/vite.config.ts
T
LathanDevers fcf34328ee
Deploy Aegis Portal / build-and-deploy (push) Successful in 15s
Revert "Merge pull request 'Refact/cleanup' (#3) from refact/cleanup into master"
This reverts commit 679e73f3af, reversing
changes made to 438d739b1a.
2026-08-03 13:06:38 +02:00

12 lines
232 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
// https://vite.dev/config/
export default defineConfig({
plugins: [
react(),
tailwindcss()
],
})