14 lines
292 B
JavaScript
Raw Normal View History

2023-10-25 00:33:37 +02:00
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "export",
2023-10-26 15:59:58 +02:00
webpack: (config) => {
config.externals.push({
"utf-8-validate": "commonjs utf-8-validate",
bufferutil: "commonjs bufferutil",
});
return config;
},
2023-10-25 00:33:37 +02:00
};
module.exports = nextConfig;