image-generation-editing / next.config.ts
philschmid's picture
init
3bb377e unverified
raw
history blame
216 Bytes
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
experimental: {
turbo: {
resolveAlias: {
canvas: "./empty-module.ts",
},
},
},
};
export default nextConfig;