Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 463 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 463 Bytes

Prerender HTML Cache plugin

This plugin is used with your Prerender server to cache HTML responses as files.

From within your Prerender server directory run:

NPM installation coming soon

$ npm install prerender-html-cache --save
server.js
global.scriptPath = __dirname;

const prerender = require('prerender');
const server = prerender();

server.use(require('prerender-html-cache'))

server.start();