next.config.ts (
12
lines of code) (
raw
):
import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: "standalone", experimental: { turbo: { resolveAlias: { canvas: "./empty-module.ts", }, }, }, }; export default nextConfig;