@wroud/vite-plugin-ssg

0.2.4 • Public • Published

@wroud/vite-plugin-ssg

ESM-only package NPM version

@wroud/vite-plugin-ssg is a Vite plugin for rendering React applications statically to HTML. It allows for generating pre-rendered HTML files, improving SEO and initial loading times for client-side rendered apps.

Features

  • Static Site Generation (SSG): Renders your React application to static HTML at build time.
  • Configurable Render Timeout: Customize the render timeout for flexible rendering behavior.
  • React Refresh: Supports React Refresh for a seamless development experience.
  • Hot Module Reload (HMR): Enables Hot Module Reload for faster iterative development.

Requirements

  • React 19 or higher
  • Vite 6 or higher

Installation

Install via npm:

npm install @wroud/vite-plugin-ssg

Install via yarn:

yarn add @wroud/vite-plugin-ssg

Usage

Options

@wroud/vite-plugin-ssg provides a configurable option:

interface SSGOptions {
  renderTimeout?: number;
}

Example Configuration

To add @wroud/vite-plugin-ssg to your Vite application, follow these steps:

  1. Import the plugin:

    import { ssgPlugin } from "@wroud/vite-plugin-ssg";
  2. Add the plugin and configure the build entry point using rollupOptions:

    import path from "path";
    
    export default defineConfig({
      build: {
        rollupOptions: {
          input: {
            app: path.resolve("src/index.tsx") + "?ssg",
          },
        },
      },
      plugins: [ssgPlugin()],
    });

    Here, we specify the entry point with a ?ssg query to signal SSG processing.

  3. In vite-env.d.ts add:

    /// <reference types="vite/client" />
    /// <reference types="@wroud/vite-plugin-ssg/resolvers" />
  4. Create your index.tsx file with a default export for the Index component:

    import type { IndexComponentProps } from "@wroud/vite-plugin-ssg";
    import { Body, Head } from "@wroud/vite-plugin-ssg/react/components";
    import main from "./index.tsx?ssg-main";
    import indexStyles from "./index.css?url";
    import { App } from "./App.js";
    
    export default function Index(props: IndexComponentProps) {
      return (
        <html lang="en">
          <Head {...props}>
            <meta charSet="utf-8" />
            <meta
              name="viewport"
              content="width=device-width, initial-scale=1"
            />
            <title>Grid</title>
            <link rel="stylesheet" href={indexStyles} />
          </Head>
          <Body {...props} after={<script type="module" src={main} />}>
            <App />
          </Body>
        </html>
      );
    }
    • Use a default export for the Index component.
    • Import styles with ?url and add them as a <link> element.
    • Import the main file (e.g., index.tsx) with the ?ssg-main query and include it as a script element for client-side bootstrapping.

Generated Output

When building the project, the following files will be generated:

  • app/index.js: Contains the exported render function for SSG, which can be manually used to generate HTML.
  • app/index.html: The statically generated HTML page.
  • assets/index-[hash].css: The CSS file with styles.
  • assets/app/index-[hash].js: The client bootstrap script.

Documentation

For detailed usage and API reference, visit the documentation site.

Changelog

All notable changes to this project will be documented in the CHANGELOG file.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Dependencies (5)

Dev Dependencies (9)

Package Sidebar

Install

npm i @wroud/vite-plugin-ssg

Weekly Downloads

12

Version

0.2.4

License

none

Unpacked Size

75.1 kB

Total Files

83

Last publish

Collaborators

  • wroud