Files
rpg-static-site/.vscode/launch.json
Anthony Correa 385694fb75 feat: enhance podcast functionality and build pipeline
- Dynamically resolve image paths for podcast episodes in `episodes.11tydata.js`
- Add podcast metadata handling with inferred URLs for MP3 and transcripts
- Introduce search functionality with Lunr.js and a search index generator
- Update Eleventy path prefix handling to support environment variable override
- Add `.mp4` files to `.gitignore`
- Expand VSCode settings to include Markdown-Eleventy support and improved terminal history
- Add deployment script (`deploy.sh`) with remote rsync-based deployment and permission handling
- Adjust episode layout to use dynamic image paths and updated podcast metadata
- Add search and members page updates, including new URLs and search integration
- Update dependencies to include `html-to-text` and related packages for search indexing
2024-12-23 13:30:22 -06:00

31 lines
817 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Eleventy --serve",
"skipFiles": [
"<node_internals>/**"
],
"runtimeExecutable": "npx",
"args": ["@11ty/eleventy","--output","dist", "--serve"],
},
{
"type": "node",
"request": "launch",
"name": "Debug Eleventy --serve",
"skipFiles": [
"<node_internals>/**"
],
"env": {
"DEBUG":"Eleventy*"
},
"runtimeExecutable": "npx",
"args": ["@11ty/eleventy","--output", "dist", "--serve"],
}
]
}