This repository has been archived on 2024-12-07. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Cinemateket/vite.config.ts

8 lines
163 B
TypeScript
Raw Normal View History

2023-08-28 15:40:33 +02:00
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
})