Skip to content

Commit 7a003a7

Browse files
committed
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.
1 parent c5c46e8 commit 7a003a7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The official website and blog for Aurelia (aurelia.io), built with Hugo.
2222
3. **Development**
2323
```bash
2424
# Start the development server
25-
hugo server -D
25+
hugo serve -D -F --ignoreCache
2626
```
2727
Visit http://localhost:1313 to see the site.
2828

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"version": "1.0.0",
44
"description": "Aurelia documentation website",
55
"scripts": {
6-
"dev": "hugo server",
6+
"dev": "hugo serve -D -F --ignoreCache",
77
"build": "hugo --minify",
8-
"start": "hugo server"
8+
"start": "hugo serve -D -F --ignoreCache"
99
},
1010
"devDependencies": {
1111
"@tailwindcss/cli": "^4.0.0-beta.7",

0 commit comments

Comments
 (0)