13 lines
245 B
JavaScript
13 lines
245 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
webpack: (config) => {
|
|
config.resolve.alias.canvas = false;
|
|
|
|
return config;
|
|
},
|
|
// basePath: '/github-pages',
|
|
}
|
|
|
|
module.exports = nextConfig
|