mirror of
https://github.com/ajvpot/meshexplorer.git
synced 2026-07-04 08:40:57 +02:00
8 lines
129 B
TypeScript
8 lines
129 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'standalone',
|
|
};
|
|
|
|
export default nextConfig;
|