Skip to main content

Documentation Index

Fetch the complete documentation index at: https://tempolabsinc.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

If you are using Vite this is likely because you have a custom hmr configuration. E.g. in vite.config.js:
  server: {
    hmr: {
      host: "localhost",
      port: 3050,
      clientPort: 3050,
    },
  },
Change this to use the default if in tempo:
server: {
    hmr: {
      host: import.meta.env.TEMPO ? undefined : "localhost",
      port: import.meta.env.TEMPO ? undefined : 3050,
      clientPort: import.meta.env.TEMPO ? undefined : 3050,
    },
  },