feat: Add start command

This commit is contained in:
Simon 2023-05-17 17:03:07 +02:00
parent 449bec0bb4
commit c170e69d9b
3 changed files with 4 additions and 1 deletions

View File

@ -7,6 +7,7 @@
"scss/at-extend-no-missing-placeholder": null,
"scss/dollar-variable-colon-space-after": null,
"scss/dollar-variable-empty-line-before": null,
"media-feature-range-notation": null,
"color-function-notation": null,
"alpha-value-notation": null,
"selector-id-pattern": null,

View File

@ -57,7 +57,7 @@ body {
user-select: none;
}
@media (width <= 768px) {
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}

View File

@ -7,6 +7,8 @@
"scripts": {
"prebuild": "npm run clean",
"build": "node_modules/.bin/hugo/hugo --gc --minify",
"prestart": "npm run clean",
"start": "node_modules/.bin/hugo/hugo server --bind=0.0.0.0 --disableFastRender",
"clean": "rm -rf public resources",
"lint": "npm run -s lint:scripts && npm run -s lint:styles",
"lint:scripts": "eslint assets/scripts",