Learn more about our DNA here.
Once you've installed dependencies with npm install
(or npm install
or yarn
), start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
To create a production version of your app:
npm run build
Our localhost runs the stage environment by default. You can switch it to run the production environment as you test things out and then switch back to staging.
You can do this in the lib/config file by setting the value to true:
const previewMock = false; -> true;