simplerethink

Results 8 comments of simplerethink

Looks like adding this may have resolved my issue. ``` eleventyConfig.setServerPassthroughCopyBehavior("copy"); eleventyConfig.addPassthroughCopy("public"); ``` Originally, I only had this, as mentioned in #2: ``` eleventyConfig.setServerPassthroughCopyBehavior("copy"); ```

Looks like your open issues with [eleventy-plugin-vite](https://github.com/11ty/eleventy-plugin-vite) are part of this as well?

@aaronstezycki @mwaterous any chance you've tried using `@11ty/eleventy-img` with this starter? I can't get the images to copy over when building.

@pdehaan thank you! I'll do some more digging. I keep getting `[ ]` even for nested pages within my site.

I tried with PostCSS as well. ``` npx @11ty/eleventy [11ty] Writing _site/test/index.html from ./_src/test.njk [11ty] Writing _site/index.html from ./_src/index.njk vite v3.2.3 building for production... ✓ 1 modules transformed. [vite:css] Failed...

Has anyone figured this out? I'm trying to do something similar. The Hugo example is exactly what I'm trying to accomplish as well.

Yes, `title` is in the frontmatter of a collection. `getCollectionIdFromURL` is probably a bit over my head at this point, but I'll give it a shot. Thank you for the...

I think I have a different solution that works for my current needs. ```astro --- const { title } = Astro.props; function camelCaseString(str) { return str.charAt(0).toUpperCase() + str.slice(1).toLowerCase().trim(); } ---...