diff --git a/.gitignore b/.gitignore index da64c7b..ed65dbe 100644 --- a/.gitignore +++ b/.gitignore @@ -3,7 +3,6 @@ dist/ # generated types .astro/ .idea/ -.vscode/ # dependencies node_modules/ diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..c37a100 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,18 @@ +{ + // Enable pasting files into a Markdown editor to create Markdown links. + "markdown.editor.filePaste.enabled": true, + + // Copy pasted media files into a Markdown editor to the workspace. + "markdown.editor.filePaste.copyIntoWorkspace": "mediaFiles", + + // Enable dropping files into a Markdown editor to create Markdown links. + "markdown.editor.drop.enabled": true, + + // Copy dropped media files into a Markdown editor to the workspace. + "markdown.editor.drop.copyIntoWorkspace": "mediaFiles", + + // Define the destination folder for copied files. + "markdown.copyFiles.destination": { + "/src/content/**/*": "/src/images/content/${documentBaseName}/" + }, +}