Files
Unchained ed9561a460 feat: production-ready dashboard with proper auth persistence
- Add dashboard UI showing connection status, webhooks, and email config
- Fix FileAPL to use fileName param for persistent /data volume storage
- Configure production domains and webhooks
- Add dev tunnel script for local testing
- Update Dockerfile and build config for K3s deployment

The app is now successfully installed and running at:
https://core-extensions.manoonoils.com
2026-03-27 20:13:38 +02:00

29 lines
645 B
TypeScript

import path from "path";
import { NextConfig } from "next";
const config: NextConfig = {
reactStrictMode: true,
output: 'standalone',
typescript: {
// Allow build to succeed even with type errors
ignoreBuildErrors: true,
},
eslint: {
// Allow build to succeed even with lint errors
ignoreDuringBuilds: true,
},
webpack: (config) => {
config.resolve = {
...config.resolve,
alias: {
...config.resolve?.alias,
react: path.resolve("./node_modules/react"),
"react-dom": path.resolve("./node_modules/react-dom"),
},
};
return config;
},
};
export default config;