- Remove unused variables and imports across components - Fix BabylonJS material property errors (hasAlpha → useAlphaFromDiffuseTexture) - Resolve TypeScript interface extension issues in PhaseViewer - Add null safety checks for potentially undefined properties - Ensure proper array initialization before operations - Clean up unused function declarations 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
11 lines
198 B
TypeScript
11 lines
198 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
host: '0.0.0.0',
|
|
}
|
|
})
|