VSCode includes the extension PasteImage.
I want to specify where to save the copied image, but I get an error.
Where to Save: Create an image folder where HTML files are located and save it
PasteImage stores the image in the same location as the HTML file, so I wrote the following in setting.json:(Please ignore the above two lines of code.)
{
"emmet.variables": {
"lang": "ja"
}
"pasteImage.path": "${currentFileDir}/image"
}
After completing this, an error message saying "Not enough commas" appears.Where should I add it?
json vscode
{
"emmet.variables": {
"lang": "ja"
}, ← Here it is it is!
"pasteImage.path": "${currentFileDir}/image"
}
© 2024 OneMinuteCode. All rights reserved.