We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Referring to: https://github.com/netlify/blobs?tab=readme-ov-file#server-api-reference
The documentation for BlobsServer shows this as the recommended way to import the BlobsServer API:
// tested and failed in v8.1.2 import { BlobsServer } from '@netlify/blobs'
In fact @netlify/blobs does not export BlobsServer so that cannot work.
@netlify/blobs
BlobsServer
The way to do this that works is:
// tested and working in v8.1.2 import { BlobsServer } from '@netlify/blobs/server'
This should either be fixed in the documentation or the exports should be fixed to match the documented API.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Referring to: https://github.com/netlify/blobs?tab=readme-ov-file#server-api-reference
The documentation for BlobsServer shows this as the recommended way to import the BlobsServer API:
In fact
@netlify/blobs
does not exportBlobsServer
so that cannot work.The way to do this that works is:
This should either be fixed in the documentation or the exports should be fixed to match the documented API.
The text was updated successfully, but these errors were encountered: