aboutsummaryrefslogtreecommitdiff
path: root/.vscode/settings.json
blob: 8dfdb2df50f71d22903bf2517f79d94e6df75329 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
    "[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": [
        {
            "title": "blog",
            "path": "[[workspace]]/src/content/blog"
        },
        {
            "title": "pages",
            "path": "[[workspace]]/src/pages"
        }
    ],
    "frontMatter.framework.id": "astro",
    "frontMatter.preview.host": "http://localhost:4321"
}