Skip to content

Commit

Permalink
feat(docs): update dev server commands in README
Browse files Browse the repository at this point in the history
Updated the development server commands in package.json and README to include additional flags for better caching control.
  • Loading branch information
Vheissu committed Dec 21, 2024
1 parent c5c46e8 commit 7a003a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 7a003a7

Please sign in to comment.