$ npx spassr --assets-dir dist --entrypoint dist/index.html --script dist/build/bundle.js --ssr
Spassr can be configured through CLI, package.json, spassr.config.js and .env.
Environment variables are converted from snake_case to camelCase, so SPASSR_assets_dir = dist becomes {... assetsDir: 'dist'}
For configuration options, refer to the API below.
optionsPartial<config.Config> *
Type: object
assetsDir(string | Array<string>) folders with static content to be served.entrypointstring HTML template, eg. assets/index.html.scriptstring path to app, eg. build/bundle.js.port(string | number) port to serve on.ssrboolean enable SSR for routes not resolved in assetsDir.silentboolean quiet console.log.middlewareFunction function to customize SPA server (Not available in CLI).ssrOptionsPartial<tossr.Config> options to pass to ssr.
Called before/after the app script is evaluated
Type: Function
domobject The DOM object
Type: Config
