mirror of
https://github.com/ajvpot/meshexplorer.git
synced 2026-06-12 02:04:49 +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;
|