mirror of
https://github.com/grp06/openclaw-studio.git
synced 2026-08-14 08:52:03 +00:00
8 lines
157 B
TypeScript
8 lines
157 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
serverExternalPackages: ["ws", "better-sqlite3"],
|
|
};
|
|
|
|
export default nextConfig;
|