Files
metabuilder/exploded-diagrams/next.config.js
T
git ec232d8c28 feat: Convert exploded-diagrams to React/Next.js with collision detection
- Migrate from vanilla JS to Next.js 15 with TypeScript
- Add Love2D-style AABB collision detection for parts
- Dynamic canvas that expands when parts collide
- UI boundary collision (horizontal rule grace margin)
- Sass styling with dark theme
- Interactive controls (explosion slider, rotation)
- Part highlighting with glow effects
- Breadcrumb navigation

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-21 20:10:11 +00:00

9 lines
159 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
sassOptions: {
silenceDeprecations: ['legacy-js-api'],
},
}
module.exports = nextConfig