13 lines
216 B
TypeScript
13 lines
216 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
experimental: {
|
|
turbo: {
|
|
resolveAlias: {
|
|
canvas: './empty-module.ts',
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|