mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 04:57:15 -05:00
Add Next.js frontends with health endpoints
This commit is contained in:
12
apps/prism-console/next.config.mjs
Normal file
12
apps/prism-console/next.config.mjs
Normal file
@@ -0,0 +1,12 @@
|
||||
/** @type {import('next').NextConfig} */
|
||||
const nextConfig = {
|
||||
output: "standalone",
|
||||
experimental: {
|
||||
appDir: true
|
||||
},
|
||||
env: {
|
||||
API_URL: process.env.API_URL || "https://api.blackroad.systems"
|
||||
}
|
||||
};
|
||||
|
||||
export default nextConfig;
|
||||
Reference in New Issue
Block a user