JSPM

@zugriff/preset-remix

1.0.5
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 5
  • Score
    100M100P100Q55078F
  • License MIT

Deploy your Remix application with zugriff

Package Exports

  • @zugriff/preset-remix
  • @zugriff/preset-remix/LICENSE
  • @zugriff/preset-remix/README.md
  • @zugriff/preset-remix/entry.server.jsx
  • @zugriff/preset-remix/entry.server.tsx
  • @zugriff/preset-remix/handler
  • @zugriff/preset-remix/handler.js
  • @zugriff/preset-remix/render

Readme

@zugriff/preset-remix

This package is part of the zugriff ecosystem.

Usage

npm i --save-dev @zugriff/preset-remix
import { vitePlugin as remix } from '@remix-run/dev';
import { installGlobals } from '@remix-run/node';
import tsconfigPaths from 'vite-tsconfig-paths';
import { defineConfig } from 'vite';

import preset from '@zugriff/preset-remix';

installGlobals();

export default defineConfig({
  plugins: [
    remix({
      presets: [preset()],
    }),
    tsconfigPaths(),
  ],
});