From 7a003a73a05d956bc7325430ef8b56b6d4228ad5 Mon Sep 17 00:00:00 2001 From: Dwayne Charrington Date: Sat, 21 Dec 2024 16:30:33 +1000 Subject: [PATCH] feat(docs): update dev server commands in README Updated the development server commands in package.json and README to include additional flags for better caching control. --- README.md | 2 +- package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index dda572b..ae26b6a 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ The official website and blog for Aurelia (aurelia.io), built with Hugo. 3. **Development** ```bash # Start the development server - hugo server -D + hugo serve -D -F --ignoreCache ``` Visit http://localhost:1313 to see the site. diff --git a/package.json b/package.json index f50cace..228bb9c 100644 --- a/package.json +++ b/package.json @@ -3,9 +3,9 @@ "version": "1.0.0", "description": "Aurelia documentation website", "scripts": { - "dev": "hugo server", + "dev": "hugo serve -D -F --ignoreCache", "build": "hugo --minify", - "start": "hugo server" + "start": "hugo serve -D -F --ignoreCache" }, "devDependencies": { "@tailwindcss/cli": "^4.0.0-beta.7",