diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2024-02-08 21:41:36 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2024-02-08 21:41:36 -0500 |
| commit | c1b2794611548ef1fa30055a91926c4074f2f63e (patch) | |
| tree | 85f218f28d933e310196095a724463afc037d8ad /.vscode | |
| parent | dc6e36f13c8f94b148f6a3ec8378c66e5fd5034a (diff) | |
| download | personal-website-c1b2794611548ef1fa30055a91926c4074f2f63e.tar.gz personal-website-c1b2794611548ef1fa30055a91926c4074f2f63e.tar.bz2 personal-website-c1b2794611548ef1fa30055a91926c4074f2f63e.zip | |
Fixed overflow for mobile, loading in gh projects
Diffstat (limited to '.vscode')
| -rw-r--r-- | .vscode/settings.json | 46 |
1 files changed, 20 insertions, 26 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json index 177e7da..8dfdb2d 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,30 +1,24 @@ { - "frontMatter.taxonomy.contentTypes": [ + "[markdown]": { + "editor.fontSize": 14, + "editor.lineHeight": 26, + "editor.wordWrap": "wordWrapColumn", + "editor.wordWrapColumn": 64, + "editor.lineNumbers": "off", + "editor.quickSuggestions": false, + "editor.minimap.enabled": false + }, + "frontMatter.content.publicFolder": "public", + "frontMatter.content.pageFolders": [ { - "name": "default", - "pageBundle": false, - "fields": [ - { - "title": "title", - "name": "title", - "type": "string" - }, - { - "title": "description", - "name": "description", - "type": "string" - }, - { - "title": "pubDate", - "name": "pubDate", - "type": "datetime" - }, - { - "title": "tags", - "name": "tags", - "type": "tags" - } - ] + "title": "blog", + "path": "[[workspace]]/src/content/blog" + }, + { + "title": "pages", + "path": "[[workspace]]/src/pages" } - ] + ], + "frontMatter.framework.id": "astro", + "frontMatter.preview.host": "http://localhost:4321" }
\ No newline at end of file |
