mirror of
https://github.com/arthur-pbty/flint.git
synced 2026-08-05 20:29:17 +02:00
- add Discord OAuth2 authentication - allow users to register their bots via token - implement dynamic bot start/stop system - store bots in database (multi-tenant) - replace single-bot env setup with scalable architecture
8 lines
142 B
JavaScript
8 lines
142 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
output: "standalone",
|
|
};
|
|
|
|
export default nextConfig;
|