Files
metabuilder/pastebin/next.config.js
johndoe6345789 73c8e3d4dc feat: Add snippet-pastebin application
Full-featured pastebin application with:
- Next.js frontend with TypeScript
- Express backend with SQLite/PostgreSQL
- Syntax highlighting for 100+ languages
- Code quality validation system
- Comprehensive accessibility (WCAG compliance)
- Docker deployment configuration
- Playwright E2E tests
- Jest unit tests

This provides a standalone web application that can be
integrated as a capability module in the Universal Platform.

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

21 lines
545 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
sassOptions: {
includePaths: ['./src/styles'],
},
experimental: {
optimizePackageImports: ['@phosphor-icons/react'],
},
eslint: {
// Linting is handled separately with direct ESLint invocation (eslint.config.mjs)
// Disable Next.js ESLint wrapper to avoid compatibility issues with ESLint 9+ flat config
ignoreDuringBuilds: true,
},
typescript: {
tsconfigPath: './tsconfig.json',
ignoreBuildErrors: true,
},
}
module.exports = nextConfig