virtweb_backend
virtweb_docs
virtweb_frontend
public
src
.env
.env.production
.gitignore
README.md
eslint.config.js
index.html
package-lock.json
package.json
tsconfig.app.json
tsconfig.json
tsconfig.node.json
vite.config.ts
.drone.yml
LICENSE
Makefile
README.md
renovate.json
8 lines
161 B
TypeScript
8 lines
161 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
})
|