v3.5.0
Vite support
Remix Development Tools now officially supports Vite!
The library exports a /vite submodule that gives you a Vite plugin to use. You can just do:
import { remixDevTools } from "remix-development-tools/vite";
export default defineConfig({
plugins: [
remixDevTools({
pluginsDir: "./plugins"
})],
});
And you will have full RDT working with 0 additional configuration.
RDT shortcut
From this release you can open up RDT using ALT + "A"
Breaking changes
- CTRL + right-click for open source has been changed to ALT + right-click
Minor changes
- The
go to source
feature is now very accurate in the Vite plugin. The old approach can still be a hit and miss with the line number but the new version knows the exact line as well. - "Open in browser" button for routes is now a link you can open up in a new tab
- The information for the loader calls in server data is now reversed so that the newest entries are at the top instead of bottom.
- The server info tab has been reorganized to show the information in a better order to make it more readable
What's Changed
- Move getting started up in the README.md by @brookslybrand in #73
- Vite support by @AlemTuzlak in #72
New Contributors
- @brookslybrand made their first contribution in #73
Full Changelog: v3.4.0...v3.5.0