Compare commits
No commits in common. "5bb1f4386a5cc7ff77e62f05ec494eda0bcffd52" and "01e4393a2c4bebd6aadb87e6f848f44210595b62" have entirely different histories.
5bb1f4386a
...
01e4393a2c
|
@ -70,7 +70,7 @@ scripts:
|
||||||
watch: parcel watch --no-autoinstall
|
watch: parcel watch --no-autoinstall
|
||||||
|
|
||||||
# Production build
|
# Production build
|
||||||
build-dist: parcel build --no-cache --no-autoinstall
|
build-dist: parcel build --no-cache --no-autoinstall && rename '.html' '.html.hbs' dist/*.html
|
||||||
|
|
||||||
# Checks
|
# Checks
|
||||||
check: tsc --noEmit
|
check: tsc --noEmit
|
||||||
|
@ -78,7 +78,5 @@ scripts:
|
||||||
lint: eslint --max-warnings=0 --format unix src
|
lint: eslint --max-warnings=0 --format unix src
|
||||||
|
|
||||||
# Parcel config
|
# Parcel config
|
||||||
source:
|
source: src/index.html
|
||||||
- src/index.html
|
|
||||||
- src/404.html
|
|
||||||
browserslist: '> 1%, not dead'
|
browserslist: '> 1%, not dead'
|
||||||
|
|
21
src/404.html
21
src/404.html
|
@ -1,21 +0,0 @@
|
||||||
<extends src="./lib/html/base.html">
|
|
||||||
<block name="content">
|
|
||||||
<section class="section">
|
|
||||||
<div class="container">
|
|
||||||
<h1 class="title has-text-weight-normal">404</h1>
|
|
||||||
|
|
||||||
<div class="columns">
|
|
||||||
<div class="column content">
|
|
||||||
<!-- prettier-ignore -->
|
|
||||||
<markdown>
|
|
||||||
Whatever you were expecting to see here doesn't exist.
|
|
||||||
|
|
||||||
If you were sent here from a link and you really think
|
|
||||||
this page *should* exist, feel free to contact me!
|
|
||||||
</markdown>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
</block>
|
|
||||||
</extends>
|
|
Reference in a new issue