From 40b43012396d756d2fa4b8b323f5c3b43a69fd13 Mon Sep 17 00:00:00 2001 From: Parker Lougheed Date: Tue, 24 Jan 2023 15:02:43 -0600 Subject: [PATCH] Update `dart create` example to use new `web` template name --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 796486d..c4bca1c 100644 --- a/README.md +++ b/README.md @@ -32,8 +32,8 @@ Here's an example of creating a web app and then running it with this server: ```console -$ dart create -t web-simple web-app -$ cd web-app +$ dart create -t web web_app +$ cd web_app $ dart pub get $ dart run build_runner build -o build $ dhttpd --path build/web/ # Serves app at http://localhost:8080