Files
Maestro/tailwind.config.mjs
Pedram Amini 5595157bb8 MAESTRO: Create separate Vite config for web interface build
- Add vite.config.web.mts with dedicated web interface configuration
- Configure build output to dist/web/ directory
- Set up code splitting with React in separate chunk
- Enable source maps for development debugging
- Add dev server proxy for API and WebSocket connections
- Create index.html entry point with mobile-optimized meta tags
- Create main.tsx with device detection for mobile/desktop routing
- Add index.css with Tailwind, CSS custom properties, and animations
- Create placeholder mobile/desktop App components for Phase 1/2
- Update tailwind.config.mjs to include src/web files
2025-11-27 03:30:46 -06:00

16 lines
324 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./src/renderer/**/*.{js,ts,jsx,tsx}",
"./src/web/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
mono: ['"JetBrains Mono"', '"Fira Code"', '"Courier New"', 'monospace'],
},
},
},
plugins: [],
}