chromadb-admin / next.config.js
hugging2021's picture
Upload folder using huggingface_hub
58faf93 verified
raw
history blame contribute delete
284 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
webpack: (config, { buildId, dev, isServer, defaultLoaders, webpack }) => {
config.module.rules.push({
test: /\.node$/,
use: 'node-loader',
});
return config;
},
}
module.exports = nextConfig