Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 756 Bytes

File metadata and controls

28 lines (22 loc) · 756 Bytes

Builder

Get started

  1. Require lunaris
const lunaris = require('lunaris');
  1. Build the app
const lunaris = require('lunaris');

lunaris.build({
  modulesFolder               : null,  // where are modules ?
  vuejsGlobalComponentsFolder : null,  // where are vuejs global components ?
  profile                     : {},    // profile object
  isProduction                : false, // is prodution build ?
  langPath                    : null,  // where are lang files ?
  lang                        : null,  // fr, es, nl, ...
  isLangGeneration            : false, // is builder required to generate lang file
  startLink                   : '/'    // from where to launch the app
}, (err, code) => {
  // do some magic
});