feat: Add start command
This commit is contained in:
parent
449bec0bb4
commit
c170e69d9b
|
@ -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,
|
||||
|
|
|
@ -57,7 +57,7 @@ body {
|
|||
user-select: none;
|
||||
}
|
||||
|
||||
@media (width <= 768px) {
|
||||
@media (min-width: 768px) {
|
||||
.bd-placeholder-img-lg {
|
||||
font-size: 3.5rem;
|
||||
}
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue