Files
blackroad-operating-system/apps/web/next.config.mjs
2025-11-21 00:18:26 -06:00

10 lines
156 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
experimental: {
appDir: true
}
};
export default nextConfig;