mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-04 18:54:53 +00:00
ec232d8c28
- 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>
9 lines
159 B
JavaScript
9 lines
159 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
sassOptions: {
|
|
silenceDeprecations: ['legacy-js-api'],
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|