3a5ebaa17a
Students can now record credits earned in courses taken outside the J27 program via an inline editable amber chip on each spec card. Values flow through the LP (per-spec demand reduces by external amount), upper-bound math, decision-tree search, and the credit bar visualization. The 9-credit threshold and the 3-spec achievement cap are unchanged; required-course gates remain authoritative — external credits never satisfy them.
19 lines
392 B
TypeScript
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.5.0'),
|
|
__APP_VERSION_DATE__: JSON.stringify('2026-05-10'),
|
|
},
|
|
server: {
|
|
allowedHosts: ['soos'],
|
|
},
|
|
test: {
|
|
globals: true,
|
|
},
|
|
})
|