One includes a unified development tools panel to help you debug and optimize your app. Open it with Alt+Space (Option+Space on Mac) to see a spotlight-style picker.
Press Alt+Space to open the spotlight menu, then select a tool. You can also use keyboard shortcuts to jump directly to a specific panel:
Press Escape to close any panel.
See how your page appears in Google search results and check for common SEO issues:
Debug the current route state:
[id])Visualize loader performance with a waterfall breakdown:
Useful for identifying slow loaders and optimizing data fetching.
Track errors from error boundaries and loaders:
Errors are collected in real-time so you can see issues as they happen.
Hold Shift+Cmd (Mac) or Shift+Ctrl (Windows/Linux) and hover over any element to see its source location. Click to open the file in your editor.
This requires the data-one-source attribute which One adds automatically to components during development.
The dev tools panel is:
Dev tools are enabled by default in development mode. To disable them, set:
// vite.config.ts
import { one } from 'one/vite'
export default {
plugins: [
one({
devtools: false
})
]
}
Edit this page on GitHub.