Skip to content

Getting Started

Installation 💿

yarn add weblands

Usage 🚀

The weblands executable provides the following commands:

  • weblands dev: Starts the development server
  • weblands build: Creates a production build of the site
  • weblands preview: Preview the site after building

Add the following shortcuts to package.json:

"scripts": {
"dev": "weblands dev --open",
"build": "weblands build",
"preview": "weblands preview --open"
},
  • yarn dev: Starts the development server
  • yarn build: Creates a production build of the site
  • yarn preview: Preview the site after building