gbclient/next.config.js
Rodrigo Rodriguez (Pragmatismo) 375d702b19
All checks were successful
GBCI / build (push) Successful in 14m45s
feat: Implement responsive navigation and media player UI
- Added a new navigation style with responsive design in client-nav.css.
- Created a comprehensive editor style in editor/style.css for better user experience.
- Introduced paper style for ProseMirror editor with enhanced text formatting options.
- Developed a media player component with waveform visualization and media library in player/page.tsx.
- Styled media player controls and sliders for improved usability in player/style.css.
- Implemented media type detection for audio, video, and slides.
- Added keyboard shortcuts for media control and navigation.
2025-06-28 22:36:36 -03:00

10 lines
No EOL
195 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
images: { unoptimized: true },
typescript: {
ignoreBuildErrors: true,
},
}
module.exports = nextConfig