619f9163c6
- Aperant: Vite build, shims, deploy script, dist assets - Cockpit components: Card, Badge, Modal, Input, DataTable, StatusDot - EDA worker for browser-side PCB/schematic processing - Next.js project config, CI pipeline, layout Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
10 lines
189 B
JavaScript
10 lines
189 B
JavaScript
/** @type {import("next").NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
experimental: {
|
|
serverComponentsExternalPackages: ["bullmq"]
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|