eleventy-dev-server
eleventy-dev-server copied to clipboard
A minimal generic web-development web server.
Given a pathPrefix = `"/abc/"`, the [server](https://github.com/11ty/eleventy-dev-server/blob/e8cb274b88c278b17d455dd5dd1b596a14b8581d/server.js#L277-L291) may redirect path `/abc/def` to `/def/`. We need to prepend the pathPrefix back for the new location.
Hey, I have recently migrated to eleventy 2.0. I'm experiencing one DX issue that fortunately does not impact the outcome of file transformation. Just reduces the developer experience I have...
See https://github.com/netlify/netlify-redirect-parser
When adding a new image to a project Eleventy dev server has to be restarted for the new image to be served. - This is using `.addPassthroughCopy("src/img/**/*.{png,gif,jpg,jpeg,pdf,svg,webp}");` in `eleventy.js` -...
Reproduce: 1. Have an eleventy project 2. Start dev server 3. Create a new file that would output html (md, njk, etc.) 4. Web browse to that file 5. Delete...
Personally I’d get a lot of use out of having netlify redirects available in dev mode as an adapter https://github.com/netlify/netlify-redirect-parser
Workaround for now is to use `domDiff: false` on projects that do a lot of JS DOM modification. A few brainstorms: 1. Add some JavaScript hooks to the live reload...
The previous BrowserSync dev server had an `open: true` option that would open the browser window when the server started. Would be nice to have that added back in. This...
Likely on both the cli `--domdiff` to opt-in and the programmatic API. Confusion about this feature: #49 #39 #7.
This is a clarification rather than an issue I guess Testing Eleventy 2.0.0@beta and Eleventy Dev Server 1.0.0, particularly the `watch` option in conjunction with external NPM scripts for CSS...