mirror of
https://github.com/ajvpot/meshexplorer.git
synced 2026-07-02 15:50:56 +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;
|