Files
chromadb-admin/next.config.js

14 lines
284 B
JavaScript
Raw Permalink Normal View History

2026-03-29 22:02:22 -04:00
/** @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