favicon and LFS #21
21 changed files with 102 additions and 0 deletions
4
.gitattributes
vendored
Normal file
4
.gitattributes
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
*.md linguist-documentation=false
|
||||||
|
*.md linguist-detectable
|
||||||
|
|
||||||
|
public/**/*.png filter=lfs diff=lfs merge=lfs -text
|
||||||
2
.husky/_/applypatch-msg
Executable file
2
.husky/_/applypatch-msg
Executable file
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
. "$(dirname "$0")/h"
|
||||||
2
.husky/_/commit-msg
Executable file
2
.husky/_/commit-msg
Executable file
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
. "$(dirname "$0")/h"
|
||||||
22
.husky/_/h
Normal file
22
.husky/_/h
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
[ "$HUSKY" = "2" ] && set -x
|
||||||
|
n=$(basename "$0")
|
||||||
|
s=$(dirname "$(dirname "$0")")/$n
|
||||||
|
|
||||||
|
[ ! -f "$s" ] && exit 0
|
||||||
|
|
||||||
|
if [ -f "$HOME/.huskyrc" ]; then
|
||||||
|
echo "husky - '~/.huskyrc' is DEPRECATED, please move your code to ~/.config/husky/init.sh"
|
||||||
|
fi
|
||||||
|
i="${XDG_CONFIG_HOME:-$HOME/.config}/husky/init.sh"
|
||||||
|
[ -f "$i" ] && . "$i"
|
||||||
|
|
||||||
|
[ "${HUSKY-}" = "0" ] && exit 0
|
||||||
|
|
||||||
|
export PATH="node_modules/.bin:$PATH"
|
||||||
|
sh -e "$s" "$@"
|
||||||
|
c=$?
|
||||||
|
|
||||||
|
[ $c != 0 ] && echo "husky - $n script failed (code $c)"
|
||||||
|
[ $c = 127 ] && echo "husky - command not found in PATH=$PATH"
|
||||||
|
exit $c
|
||||||
9
.husky/_/husky.sh
Normal file
9
.husky/_/husky.sh
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
echo "husky - DEPRECATED
|
||||||
|
|
||||||
|
Please remove the following two lines from $0:
|
||||||
|
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
. \"\$(dirname -- \"\$0\")/_/husky.sh\"
|
||||||
|
|
||||||
|
They WILL FAIL in v10.0.0
|
||||||
|
"
|
||||||
2
.husky/_/post-applypatch
Executable file
2
.husky/_/post-applypatch
Executable file
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
. "$(dirname "$0")/h"
|
||||||
5
.husky/_/post-checkout
Executable file
5
.husky/_/post-checkout
Executable file
|
|
@ -0,0 +1,5 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
. "$(dirname "$0")/h"
|
||||||
|
|
||||||
|
command -v git-lfs >/dev/null 2>&1 || { printf >&2 "\n%s\n\n" "This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-checkout' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks')."; exit 2; }
|
||||||
|
git lfs post-checkout "$@"
|
||||||
5
.husky/_/post-commit
Executable file
5
.husky/_/post-commit
Executable file
|
|
@ -0,0 +1,5 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
. "$(dirname "$0")/h"
|
||||||
|
|
||||||
|
command -v git-lfs >/dev/null 2>&1 || { printf >&2 "\n%s\n\n" "This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-commit' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks')."; exit 2; }
|
||||||
|
git lfs post-commit "$@"
|
||||||
5
.husky/_/post-merge
Executable file
5
.husky/_/post-merge
Executable file
|
|
@ -0,0 +1,5 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
. "$(dirname "$0")/h"
|
||||||
|
|
||||||
|
command -v git-lfs >/dev/null 2>&1 || { printf >&2 "\n%s\n\n" "This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-merge' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks')."; exit 2; }
|
||||||
|
git lfs post-merge "$@"
|
||||||
2
.husky/_/post-rewrite
Executable file
2
.husky/_/post-rewrite
Executable file
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
. "$(dirname "$0")/h"
|
||||||
2
.husky/_/pre-applypatch
Executable file
2
.husky/_/pre-applypatch
Executable file
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
. "$(dirname "$0")/h"
|
||||||
2
.husky/_/pre-auto-gc
Executable file
2
.husky/_/pre-auto-gc
Executable file
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
. "$(dirname "$0")/h"
|
||||||
2
.husky/_/pre-commit
Executable file
2
.husky/_/pre-commit
Executable file
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
. "$(dirname "$0")/h"
|
||||||
2
.husky/_/pre-merge-commit
Executable file
2
.husky/_/pre-merge-commit
Executable file
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
. "$(dirname "$0")/h"
|
||||||
5
.husky/_/pre-push
Executable file
5
.husky/_/pre-push
Executable file
|
|
@ -0,0 +1,5 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
. "$(dirname "$0")/h"
|
||||||
|
|
||||||
|
command -v git-lfs >/dev/null 2>&1 || { printf >&2 "\n%s\n\n" "This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'pre-push' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks')."; exit 2; }
|
||||||
|
git lfs pre-push "$@"
|
||||||
2
.husky/_/pre-rebase
Executable file
2
.husky/_/pre-rebase
Executable file
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
. "$(dirname "$0")/h"
|
||||||
2
.husky/_/prepare-commit-msg
Executable file
2
.husky/_/prepare-commit-msg
Executable file
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
. "$(dirname "$0")/h"
|
||||||
|
|
@ -19,6 +19,11 @@ export default defineNuxtConfig({
|
||||||
htmlAttrs: {
|
htmlAttrs: {
|
||||||
class: "dark",
|
class: "dark",
|
||||||
},
|
},
|
||||||
|
link: [
|
||||||
|
{ rel: "icon", type: "image/x-icon", href: "/favicon.ico" },
|
||||||
|
{ rel: "icon", type: "image/png", href: "/favicon.png" },
|
||||||
|
{ rel: "icon", type: "image/svg+xml", href: "/favicon.svg" },
|
||||||
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
devtools: { enabled: true },
|
devtools: { enabled: true },
|
||||||
|
|
|
||||||
BIN
public/favicon.png
(Stored with Git LFS)
Normal file
BIN
public/favicon.png
(Stored with Git LFS)
Normal file
Binary file not shown.
19
public/favicon.svg
Normal file
19
public/favicon.svg
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 282 282" width="282" height="282">
|
||||||
|
<style>
|
||||||
|
circle,
|
||||||
|
path{fill:none;stroke:#000;stroke-width:15}
|
||||||
|
path{stroke-width:25}
|
||||||
|
.white{stroke:#ccc}
|
||||||
|
.red{stroke:#AD1D25}
|
||||||
|
.blue{stroke:#1E4785}
|
||||||
|
</style>
|
||||||
|
<g transform="translate(50 6)">
|
||||||
|
<path d="M58 168V70a50 50 0 0 1 50-50h20" class="red"/>
|
||||||
|
<path d="M58 236v-100a50 50 0 0 1 50-50h20" class="white"/>
|
||||||
|
<path d="M58 236v-30a50 50 0 0 1 50-50h20" class="blue"/>
|
||||||
|
<circle cx="142" cy="20" r="18" class="red"/>
|
||||||
|
<circle cx="142" cy="88" r="18" class="white"/>
|
||||||
|
<circle cx="142" cy="156" r="18" class="blue"/>
|
||||||
|
<circle cx="58" cy="250" r="18" class="blue"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 709 B |
Binary file not shown.
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 129 B |
Loading…
Add table
Add a link
Reference in a new issue