sync / vite-plugin-relay

A vite plugin for Relay

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Vite Plugin Relay

NPM CI workflow

Add relay support to your Vite projects.

Created with the help of @Brendonovich and thanks to @kesne for adding pnpm support.

Usage

Add vite-plugin-relay and relay to your project.

yarn add react-relay relay-runtime
yarn add -D relay-compiler relay-config vite-plugin-relay

Next setup NPM scripts in the package.json. One is required for Vite and the other for the Relay Compiler

"scripts": {
  "dev": "vite",
  "relay": "relay-compiler"
},

Next setup relay.config.js more information about this can be found in the official relay docs.

Finally add vite-plugin-relay to your Vite configuration (vite.config.ts).

import { defineConfig } from "vite";
import relay from "vite-plugin-relay";

export default defineConfig({
  plugins: [..., relay],
});

Now your project is setup to use Relay with Vite!

Server Side Rendering

If you are planning to use this plugin with server side rendering you may need to define window. You could do this by putting the following snippet in your entry-server.js file.

if (typeof (window as any).global === 'undefined') {
  (window as any).global = globalThis;
}

About

A vite plugin for Relay

License:MIT License


Languages

Language:TypeScript 92.6%Language:HTML 4.3%Language:JavaScript 2.4%Language:Shell 0.8%