Files
actions-playground/vite.config.js
T
tom.coursow 14d6d17207
Gitea Actions Demo / Test-Job (push) Successful in 8s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 20s
added example react js app to play with gitea actions
2023-07-12 00:12:24 +02:00

13 lines
265 B
JavaScript

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
test: {
globals: true,
environment: 'jsdom',
setupFiles: './src/test/setup.js',
},
});