Files
emba-course-solver/app/vite.config.ts
Bill Ballou 99a39a2581 v1.1.1: Replace cancelled Managing Growing Companies with Innovation and Design
Replace cancelled course in Summer Elective Set 2 with new course
"Innovation and Design" qualifying for Brand Management, Entrepreneurship
and Innovation, Marketing, and Strategy (S2).
2026-03-27 11:26:53 -04:00

19 lines
392 B
TypeScript

/// <reference types="vitest" />
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
define: {
__APP_VERSION__: JSON.stringify('1.1.1'),
__APP_VERSION_DATE__: JSON.stringify('2026-03-27'),
},
server: {
allowedHosts: ['soos'],
},
test: {
globals: true,
},
})