diff options
author | Li Jin <dragon-fly@qq.com> | 2022-05-24 10:06:53 +0800 |
---|---|---|
committer | Li Jin <dragon-fly@qq.com> | 2022-05-24 10:06:53 +0800 |
commit | 30a11b0023ad1bc59662d1ead279ba92f6f57cdc (patch) | |
tree | 0a871f2eb1819a2689ea931a0a07004be909465c /doc/docs/.vuepress | |
parent | ac2f4ff4cdd3286ecaf31aec47d9d8aadfa75b0f (diff) | |
download | yuescript-0.10.23.tar.gz yuescript-0.10.23.tar.bz2 yuescript-0.10.23.zip |
add favicon and tests.v0.10.23
Diffstat (limited to 'doc/docs/.vuepress')
-rwxr-xr-x | doc/docs/.vuepress/config.js | 9 | ||||
-rwxr-xr-x | doc/docs/.vuepress/public/image/favicon/android-chrome-192x192.png | bin | 0 -> 13954 bytes | |||
-rwxr-xr-x | doc/docs/.vuepress/public/image/favicon/android-chrome-512x512.png | bin | 0 -> 35977 bytes | |||
-rwxr-xr-x | doc/docs/.vuepress/public/image/favicon/apple-touch-icon.png | bin | 0 -> 12771 bytes | |||
-rwxr-xr-x | doc/docs/.vuepress/public/image/favicon/favicon-16x16.png | bin | 0 -> 695 bytes | |||
-rwxr-xr-x | doc/docs/.vuepress/public/image/favicon/favicon-32x32.png | bin | 0 -> 1565 bytes | |||
-rwxr-xr-x | doc/docs/.vuepress/public/image/favicon/favicon.ico | bin | 0 -> 15406 bytes |
7 files changed, 7 insertions, 2 deletions
diff --git a/doc/docs/.vuepress/config.js b/doc/docs/.vuepress/config.js index b3f7313..c6f8f39 100755 --- a/doc/docs/.vuepress/config.js +++ b/doc/docs/.vuepress/config.js | |||
@@ -23,11 +23,16 @@ module.exports = { | |||
23 | ['meta', { property: 'og:description', content: description }], | 23 | ['meta', { property: 'og:description', content: description }], |
24 | // Should probably have a og:url but I'm not sure how to add that without it being the same on all pages | 24 | // Should probably have a og:url but I'm not sure how to add that without it being the same on all pages |
25 | ['meta', { property: 'og:type', content: 'website' }], | 25 | ['meta', { property: 'og:type', content: 'website' }], |
26 | ['meta', { property: 'og:image', content: 'https://yuescript.org/image/yuescript.png' }], | 26 | ['meta', { property: 'og:image', content: '/image/yuescript.png' }], |
27 | ['meta', { property: 'og:image:secure_url', content: 'https://yuescript.org/image/yuescript.png' }], | 27 | ['meta', { property: 'og:image:secure_url', content: '/image/yuescript.png' }], |
28 | ['meta', { property: 'og:image:type', content: 'image/png' }], | 28 | ['meta', { property: 'og:image:type', content: 'image/png' }], |
29 | ['meta', { property: 'og:image:width', content: '1200' }], | 29 | ['meta', { property: 'og:image:width', content: '1200' }], |
30 | ['meta', { property: 'og:image:height', content: '1200' }], | 30 | ['meta', { property: 'og:image:height', content: '1200' }], |
31 | ['link', { rel: 'icon', href: '/image/favicon/favicon-16x16.png', sizes: '16x16', type: 'image/png' }], | ||
32 | ['link', { rel: 'icon', href: '/image/favicon/favicon-32x32.png', sizes: '32x32', type: 'image/png' }], | ||
33 | ['link', { rel: 'apple-touch-icon', href: '/image/favicon/apple-touch-icon-180x180.png', sizes: '180x180', type: 'image/png' }], | ||
34 | ['link', { rel: 'android-chrome', href: '/image/favicon/android-chrome-192x192.png', sizes: '192x192', type: 'image/png' }], | ||
35 | ['link', { rel: 'android-chrome', href: '/image/favicon/android-chrome-512x512.png', sizes: '512x512', type: 'image/png' }], | ||
31 | ['script', {}, `window.global = window;`], | 36 | ['script', {}, `window.global = window;`], |
32 | ['script', {}, ` | 37 | ['script', {}, ` |
33 | var Module = { | 38 | var Module = { |
diff --git a/doc/docs/.vuepress/public/image/favicon/android-chrome-192x192.png b/doc/docs/.vuepress/public/image/favicon/android-chrome-192x192.png new file mode 100755 index 0000000..08c42cc --- /dev/null +++ b/doc/docs/.vuepress/public/image/favicon/android-chrome-192x192.png | |||
Binary files differ | |||
diff --git a/doc/docs/.vuepress/public/image/favicon/android-chrome-512x512.png b/doc/docs/.vuepress/public/image/favicon/android-chrome-512x512.png new file mode 100755 index 0000000..557d8af --- /dev/null +++ b/doc/docs/.vuepress/public/image/favicon/android-chrome-512x512.png | |||
Binary files differ | |||
diff --git a/doc/docs/.vuepress/public/image/favicon/apple-touch-icon.png b/doc/docs/.vuepress/public/image/favicon/apple-touch-icon.png new file mode 100755 index 0000000..5780626 --- /dev/null +++ b/doc/docs/.vuepress/public/image/favicon/apple-touch-icon.png | |||
Binary files differ | |||
diff --git a/doc/docs/.vuepress/public/image/favicon/favicon-16x16.png b/doc/docs/.vuepress/public/image/favicon/favicon-16x16.png new file mode 100755 index 0000000..f067228 --- /dev/null +++ b/doc/docs/.vuepress/public/image/favicon/favicon-16x16.png | |||
Binary files differ | |||
diff --git a/doc/docs/.vuepress/public/image/favicon/favicon-32x32.png b/doc/docs/.vuepress/public/image/favicon/favicon-32x32.png new file mode 100755 index 0000000..2865ef5 --- /dev/null +++ b/doc/docs/.vuepress/public/image/favicon/favicon-32x32.png | |||
Binary files differ | |||
diff --git a/doc/docs/.vuepress/public/image/favicon/favicon.ico b/doc/docs/.vuepress/public/image/favicon/favicon.ico new file mode 100755 index 0000000..2c1360d --- /dev/null +++ b/doc/docs/.vuepress/public/image/favicon/favicon.ico | |||
Binary files differ | |||