Skip to content

v3.5.0

Compare
Choose a tag to compare
@AlemTuzlak AlemTuzlak released this 01 Dec 13:40
· 90 commits to main since this release
4ef13e2

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

New Contributors

Full Changelog: v3.4.0...v3.5.0