mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 04:57:15 -05:00
13 lines
238 B
JavaScript
13 lines
238 B
JavaScript
/** @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;
|