Skip to content
Compare
Choose a tag to compare
@mcansh mcansh released this 12 Jul 22:01
· 47 commits to main since this release
d5d9e7b

Patch Changes

  • be05e8b: The Remix Vite plugin allows you to customize the filename. This change allows you to pass a custom server file name to the Fastify plugin

    // vite.config.ts
    export default defineConfig({
      plugins: [remix({ serverFilename: "example.js" })],
    });
    // server.js
    await app.register(remixFastify, {
      serverFilename: "example.js",
    });