From c637687922f5fd15663b4158511be2e66d1d537c Mon Sep 17 00:00:00 2001 From: Tamas Ridly Date: Mon, 18 Feb 2019 18:04:50 +1100 Subject: [PATCH] Fixed README - Get started section --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4ef3e4afd..6af2bbe71 100644 --- a/README.md +++ b/README.md @@ -11,9 +11,11 @@ Sapper is a framework for building high-performance universal web apps. [Read th ## Get started Clone the [starter project template](https://github.com/sveltejs/sapper-template) with [degit](https://github.com/rich-harris/degit)... +When cloning you have to choose between rollup or webpack: ```bash -npx degit sveltejs/sapper-template my-app +npx degit "sveltejs/sapper-template#rollup" my-app +# or: npx degit "sveltejs/sapper-template#webpack" my-app ``` ...then install dependencies and start the dev server...