Configure the Publican build process
Create a basic Publican configuration script in the root of your project. This uses all default options and builds the site once (Publican will not continue to run or watch for file changes).
publican.config.js
// imports
import { Publican } from 'publican';
// create Publican object
const publican = new Publican();
// build site
await publican.build();