0.0.24 • Published 2 years ago

fastify-vite-plugin v0.0.24

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

release workflow playwright workflow

vite-plugin-ts

A Fastify plugin to integrate a Vite SPA into the current project and serving both frontend and backend from the same host.
It doesn't aim to deal with server side rendering, but you can still do that from your Fastify application.
It could be an interesting use case to render HTML only if the request is made by a bot. A bot can be detected using isbot package. It's configured to not ship Vite in production and to only serve its produced assets.

Usage

import { fastifyVitePlugin } from 'fastify-vite-plugin'
import Fastify from 'fastify'

const app = Fastify()

// place your routes before the plugin registration
// otherwise the "catch all" route that renders index.html
// for the SPA will take precedence

await app.register(fastifyVitePlugin)

await app.listen({
  port: process.env.PORT,
  host: process.env.NODE_ENV === 'development' ? '0.0.0.0' : undefined,
})

Example vite.config.ts

import react from '@vitejs/plugin-react-swc'
import { VitePWA } from 'vite-plugin-pwa'
import { defineConfig } from 'vite'

export default defineConfig({
  plugins: [
    react(),
    VitePWA({
      workbox: {
        globPatterns: ['**/*.{js,css}'],
        navigateFallback: null,
      },
      includeAssets: ['**/*'],
    }),
  ],
})

The above configuration will just work in dev mode.
When you do npx vite build for NODE_ENV=production make sure that the output is located into /dist/assets.

Options

The following options need to be specified if they are changed in vite.config.ts.

  • viteOutDir defaults to dist
  • viteAssetsDir defaults to /assets/ relative path for where Vite stores its production assets

Requirements

  • it assumes index.html is placed in the root of the project
  • its assumes npx vite build is executed before starting the application with NODE_ENV=production
    • if you are using TypeScript, it should be in the same step where you compile your code to JavaScript
0.0.21

2 years ago

0.0.22

2 years ago

0.0.23

2 years ago

0.0.24

2 years ago

0.0.20

2 years ago

0.0.19

2 years ago

0.0.18

2 years ago

0.0.17

2 years ago

0.0.16

2 years ago

0.0.15

2 years ago

0.0.14

2 years ago

0.0.13

2 years ago

0.0.12

2 years ago

0.0.11

2 years ago

0.0.10

2 years ago

0.0.9

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago