- Scaffold Vite + React + TypeScript frontend - Add Tauri v2 backend with Rust - Implement list_vault command: recursively scans .md files, parses YAML frontmatter (Is A, aliases, Belongs to, Related to, Status, Owner, Cadence), extracts title from H1 or filename - 10 passing Rust tests for frontmatter parsing and vault scanning - Configure Vitest and Playwright (test infrastructure) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
36 lines
912 B
TypeScript
36 lines
912 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
|
|
// Prevent vite from obscuring Rust errors
|
|
clearScreen: false,
|
|
|
|
// Tauri expects a fixed port
|
|
server: {
|
|
port: 5173,
|
|
strictPort: true,
|
|
},
|
|
|
|
// Env variables starting with TAURI_ are exposed to the frontend
|
|
envPrefix: ['VITE_', 'TAURI_'],
|
|
|
|
build: {
|
|
// Tauri uses Chromium on Windows and WebKit on macOS/Linux
|
|
target: process.env.TAURI_PLATFORM === 'windows' ? 'chrome105' : 'safari13',
|
|
// Don't minify for debug builds
|
|
minify: !process.env.TAURI_DEBUG ? 'esbuild' : false,
|
|
// Produce sourcemaps for debug builds
|
|
sourcemap: !!process.env.TAURI_DEBUG,
|
|
},
|
|
|
|
test: {
|
|
globals: true,
|
|
environment: 'jsdom',
|
|
setupFiles: ['./src/test/setup.ts'],
|
|
include: ['src/**/*.{test,spec}.{ts,tsx}'],
|
|
},
|
|
})
|