mirror of
https://github.com/Routstr/routstr-core.git
synced 2026-08-11 11:47:50 +00:00
9 lines
157 B
TypeScript
9 lines
157 B
TypeScript
import type { NextConfig } from 'next';
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'standalone',
|
|
/* config options here */
|
|
};
|
|
|
|
export default nextConfig;
|