mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 00:57:12 -05:00
10 lines
156 B
JavaScript
10 lines
156 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "standalone",
|
|
experimental: {
|
|
appDir: true
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|