0.0.3 • Published 9 months ago

@dmno/remix-integration v0.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

Check out the docs for more information on how to use DMNO + Remix.

THIS IS PREVIEW SOFTWARE AND SUBJECT TO RAPID CHANGE

If you have any questions, please reach out to us on Discord.


@dmno/remix-integration npm

Provides tooling to integrate dmno into your Remix dev/build workflow

How to use

Import and initialize our remix integration and add to your vite.config.ts file. You must add both the vite plugin and the Remix preset.

import { dmnoRemixVitePlugin, dmnoRemixPreset } from "@dmno/remix-integration";
import { vitePlugin as remix } from "@remix-run/dev";
import { defineConfig } from "vite";
import tsconfigPaths from "vite-tsconfig-paths";

export default defineConfig({
  plugins: [
    dmnoRemixVitePlugin(),
    remix({
      future: {
        v3_fetcherPersist: true,
        v3_relativeSplatPath: true,
        v3_throwAbortReason: true,
      },
      presets: [dmnoRemixPreset() as any],
    }),
    tsconfigPaths(),
  ],
});