@hono/vite-cloudflare-pages
TypeScript icon, indicating that this package has built-in type declarations

0.4.2 • Public • Published

@hono/vite-cloudflare-pages

@hono/vite-cloudflare-pages is a Vite plugin to build your Hono application for Cloudflare Pages.

Usage

Installation

You can install vite and @hono/vite-cloudflare-pages via npm.

npm i -D vite @hono/vite-cloudflare-pages

Or you can install them with Bun.

bun add vite @hono/vite-cloudflare-pages

Settings

Add "type": "module" to your package.json. Then, create vite.config.ts and edit it.

import { defineConfig } from 'vite'
import pages from '@hono/vite-cloudflare-pages'

export default defineConfig({
  plugins: [pages()],
})

Build

Just run vite build.

npm exec vite build

Or

bunx --bun vite build

Deploy to Cloudflare Pages

Run the wrangler command.

wrangler pages deploy ./dist

Options

The options are below.

type CloudflarePagesOptions = {
  entry?: string | string[]
  outputDir?: string
  external?: string[]
  minify?: boolean
  emptyOutDir?: boolean
}

Default values:

export const defaultOptions = {
  entry: ['./src/index.tsx', './app/server.ts'],
  outputDir: './dist',
  external: [],
  minify: true,
  emptyOutDir: false,
}

This plugin generates _routes.json automatically. The automatic generation can be overridden by creating a public/_routes.json. See Create a _routes.json file on Cloudflare Docs for more details.

Build a client

If you also want to build a client-side script, you can configure it as follows.

export default defineConfig(({ mode }) => {
  if (mode === 'client') {
    return {
      build: {
        rollupOptions: {
          input: './src/client.ts',
          output: {
            dir: './dist/static',
            entryFileNames: 'client.js',
          },
        },
        copyPublicDir: false,
      },
    }
  } else {
    return {
      plugins: [pages()],
    }
  }
})

The build command:

vite build --mode client && vite build

Authors

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i @hono/vite-cloudflare-pages

Weekly Downloads

2,824

Version

0.4.2

License

MIT

Unpacked Size

8.49 kB

Total Files

8

Last publish

Collaborators

  • yusukebe