[DOCS] Major Docs Revamp (#435)

This commit is contained in:
Ayush Chaurasia
2023-08-23 02:36:26 +05:30
committed by GitHub
parent 3d7d903d88
commit cc916389a6
17 changed files with 1044 additions and 24 deletions

View File

@@ -198,3 +198,15 @@ you can pass in `ignore_missing=True`.
This section covered the very basics of the LanceDB API.
LanceDB supports many additional features when creating indices to speed up search and options for search.
These are contained in the next section of the documentation.
## Note: Bundling vectorDB apps with webpack
Since LanceDB contains a prebuilt Node binary, you must configure `next.config.js` to exclude it from webpack. This is required for both using Next.js and deploying on Vercel.
```javascript
/** @type {import('next').NextConfig} */
module.exports = ({
webpack(config) {
config.externals.push({ vectordb: 'vectordb' })
return config;
}
})
```