mirror of
https://github.com/Radiquum/YAMPD.git
synced 2025-05-19 23:29:34 +05:00
8 lines
153 B
TypeScript
8 lines
153 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
output: 'export',
|
|
};
|
|
|
|
export default nextConfig;
|