mirror of
https://github.com/andatoshiki/toshiki-notebook.git
synced 2026-06-06 03:11:22 +00:00
refactor(lint): lint and refactor configuration file code sources in typescript
This commit is contained in:
parent
3669d93dcb
commit
b65d05e4cc
@ -19,7 +19,13 @@ export const head: HeadConfig[] = [
|
|||||||
],
|
],
|
||||||
// <script src="https://fastly.jsdelivr.net/gh/stevenjoezhang/live2d-widget@latest/autoload.js"></script>
|
// <script src="https://fastly.jsdelivr.net/gh/stevenjoezhang/live2d-widget@latest/autoload.js"></script>
|
||||||
|
|
||||||
['link', { rel: 'icon', href: 'https://r2.toshiki.dev/cdn/toshiki-notebook-favicon/favicon.ico' }],
|
[
|
||||||
|
'link',
|
||||||
|
{
|
||||||
|
rel: 'icon',
|
||||||
|
href: 'https://r2.toshiki.dev/cdn/toshiki-notebook-favicon/favicon.ico',
|
||||||
|
},
|
||||||
|
],
|
||||||
['meta', { name: 'author', content: 'Anda Toshiki' }],
|
['meta', { name: 'author', content: 'Anda Toshiki' }],
|
||||||
[
|
[
|
||||||
'meta',
|
'meta',
|
||||||
|
|||||||
@ -8,7 +8,10 @@ export const sidebar: DefaultTheme.Config['sidebar'] = {
|
|||||||
text: 'Notes & Issues',
|
text: 'Notes & Issues',
|
||||||
collapsed: false,
|
collapsed: false,
|
||||||
items: [
|
items: [
|
||||||
{ text: 'File Naming Convention', link: '/development/file-naming-convention' },
|
{
|
||||||
|
text: 'File Naming Convention',
|
||||||
|
link: '/development/file-naming-convention',
|
||||||
|
},
|
||||||
{ text: 'RClone for R2', link: '/development/rclone-for-r2' },
|
{ text: 'RClone for R2', link: '/development/rclone-for-r2' },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
@ -20,19 +23,40 @@ export const sidebar: DefaultTheme.Config['sidebar'] = {
|
|||||||
{ text: 'はじめに!', link: '/development/aws/main' },
|
{ text: 'はじめに!', link: '/development/aws/main' },
|
||||||
{ text: 'クラウド概論', link: '/development/aws/cloud.md' },
|
{ text: 'クラウド概論', link: '/development/aws/cloud.md' },
|
||||||
{ text: 'AWS 入門', link: '/development/aws/aws-get-started' },
|
{ text: 'AWS 入門', link: '/development/aws/aws-get-started' },
|
||||||
{ text: 'Hands-on 1: 初めての EC2 インスタンスを起動する', link: '/development/aws/handson-ec2.md' },
|
{
|
||||||
{ text: 'クラウドで行う科学計算・機械学習', link: '/development/aws/scientific-computing.md' },
|
text: 'Hands-on 1: 初めての EC2 インスタンスを起動する',
|
||||||
{ text: 'Hands-on 2: AWS でディープラーニングを実践', link: '/development/aws/handson-ec2.md' },
|
link: '/development/aws/handson-ec2.md',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: 'クラウドで行う科学計算・機械学習',
|
||||||
|
link: '/development/aws/scientific-computing.md',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: 'Hands-on 2: AWS でディープラーニングを実践',
|
||||||
|
link: '/development/aws/handson-ec2.md',
|
||||||
|
},
|
||||||
{ text: 'Docker 入門', link: '/development/aws/docker-system' },
|
{ text: 'Docker 入門', link: '/development/aws/docker-system' },
|
||||||
{ text: 'Hands-on 3: AWS で自動質問回答ボットを走らせる', link: '/development/aws/handson-qabot' },
|
{
|
||||||
|
text: 'Hands-on 3: AWS で自動質問回答ボットを走らせる',
|
||||||
|
link: '/development/aws/handson-qabot',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
text: 'Hands-on 4: AWS Batch を使って機械学習のハイパーパラメータサーチを並列化する',
|
text: 'Hands-on 4: AWS Batch を使って機械学習のハイパーパラメータサーチを並列化する',
|
||||||
link: '/development/aws/aws-batch',
|
link: '/development/aws/aws-batch',
|
||||||
},
|
},
|
||||||
{ text: 'Web サービスの作り方', link: '/development/aws/webserver' },
|
{ text: 'Web サービスの作り方', link: '/development/aws/webserver' },
|
||||||
{ text: 'Serverless architecture', link: '/development/aws/serverless' },
|
{
|
||||||
{ text: 'Hands-on 5: サーバーレス入門', link: '/development/aws/handson-serverless' },
|
text: 'Serverless architecture',
|
||||||
{ text: 'Hands-on 6: Bashoutter', link: '/development/aws/handson-bashoutter' },
|
link: '/development/aws/serverless',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: 'Hands-on 5: サーバーレス入門',
|
||||||
|
link: '/development/aws/handson-serverless',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: 'Hands-on 6: Bashoutter',
|
||||||
|
link: '/development/aws/handson-bashoutter',
|
||||||
|
},
|
||||||
{ text: 'まとめ', link: '/development/aws/closing' },
|
{ text: 'まとめ', link: '/development/aws/closing' },
|
||||||
{ text: 'ppendix: 環境構築', link: '/development/aws/appendix' },
|
{ text: 'ppendix: 環境構築', link: '/development/aws/appendix' },
|
||||||
{ text: '謝辞', link: '/development/aws/acknowledgement' },
|
{ text: '謝辞', link: '/development/aws/acknowledgement' },
|
||||||
|
|||||||
@ -11,7 +11,6 @@ import '@andatoshiki/vitepress-plugin-nprogress/lib/css/index.css'
|
|||||||
|
|
||||||
import { nextTick, onMounted, watch } from 'vue'
|
import { nextTick, onMounted, watch } from 'vue'
|
||||||
import { inBrowser, useRoute } from 'vitepress'
|
import { inBrowser, useRoute } from 'vitepress'
|
||||||
|
|
||||||
import '@andatoshiki/vitepress-plugin-shiki-twoslash/styles.css'
|
import '@andatoshiki/vitepress-plugin-shiki-twoslash/styles.css'
|
||||||
|
|
||||||
// custom styles import
|
// custom styles import
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user