diff --git a/next.config.js b/next.config.js index b8dbbb3..7f0b705 100644 --- a/next.config.js +++ b/next.config.js @@ -3,11 +3,7 @@ /** @type {import("next").NextConfig} */ const nextConfig = { reactStrictMode: true, - webpack: (config) => { - config.resolve.alias.canvas = false; - - return config; - }, + pageExtensions: ["tsx", "ts"], }; module.exports = nextConfig;