Zach Leatherman
Zach Leatherman
We don’t automatically parse the functions directory location from your netlify.toml but do provide an option to specify it in the bundler plugin: https://www.11ty.dev/docs/plugins/serverless/#bundler-options Do those match up?
Eleventy does its best to generated an ordered dependency graph of the content to generate `templateContent` correctly. You can read more about that here: https://www.11ty.dev/docs/advanced-order/ That said, there are _some_...
For me: https://github.com/11ty/eleventy/blob/1db6a10a98f35b6f6bcac94222cdd8597e6f7928/src/Engines/Liquid.js#L207 https://github.com/11ty/eleventy/blob/1db6a10a98f35b6f6bcac94222cdd8597e6f7928/src/Engines/Nunjucks.js#L369
Related to https://github.com/11ty/eleventy/issues/108 as well
I’m curious if your serverless `event` is reporting a `rawUrl` value. Can you log it out in `./netlify/functions/serverless/index.js`? Should be something like: ```js async function handler(event) { console.log(event.rawUrl); let elev...
Hey, I think there are probably a few issues to go through here. If you’re not seeing `rawUrl` in your event object I’d start with the assumption that your netlify...
HMMMM. I see what you’re saying. But I think the current behavior is the most technically accurate and has the least amount of magic (is the most predictable). Should all...
The change seems to break two tests: 
I made a test case for this issue using the description provided and was not able to reproduce. Can you share a test case that shows the issue?
This seems to be working fine with `eleventyConfig.addWatchTarget("scss");` or `eleventyConfig.addWatchTarget(".");` (as is default in your repo) Can you attach a DEBUG output? Specifically I’m looking for these entries: ``` Eleventy...