# @vercel/toolbar available to use collaboration features in production

**Published:** September 22, 2023 | **Authors:** George Karagkiaouris, Shaquil Hansford

---

Comments and other collaboration features are available in all Preview Deployments on Vercel. Now, you can enable them in Production Deployments and localhost by injecting the Vercel toolbar on any site with our [`@vercel/toolbar`    ](https://www.npmjs.com/package/@vercel/toolbar)package.

```tsx
import { VercelToolbar } from '@vercel/toolbar/next';
import { useIsEmployee } from 'lib/auth'; // Your auth library
 
export function StaffToolbar() {
  const isEmployee = useIsEmployee();
  return isEmployee ? <VercelToolbar /> : null;
}
```

By using the `@vercel/toolbar` npm package you and your team can leave feedback with [Comments](https://vercel.com/docs/workflow-collaboration/comments), take advantage of [Draft Mode](https://vercel.com/docs/workflow-collaboration/draft-mode) to view unpublished CMS content, or use [Visual Editing](https://vercel.com/docs/workflow-collaboration/visual-editing) on your production application.

This package is available to users on all plans and is our first step in bringing the Vercel Toolbar into your production sites.

[Check out the documentation](https://vercel.com/docs/workflow-collaboration/comments/in-production-and-localhost) to learn more.

---

📚 **More updates:** [View all changelog entries](/changelog/sitemap.md) | [Blog](/blog/sitemap.md)