GithubHelp home page GithubHelp logo

Comments (4)

nothingrandom avatar nothingrandom commented on May 22, 2024 2

Yep, that worked perfect. Thank you very much!

from eleventy-plugin-lazyimages.

liamfiddler avatar liamfiddler commented on May 22, 2024 1

OK, I think I understand now.

The transformImgPath configuration option might help. It allows you to specify a function that points the plugin to the internal image path.

Something like this might work for you (untested):

// .eleventy.js
module.exports = (eleventyConfig) => {
  eleventyConfig.addPlugin(lazyImagesPlugin, {
    transformImgPath: (imgPath) => {
      if (imgPath.startsWith('/') && !imgPath.startsWith('//')) {
        return `./src${imgPath}`;
      }

      return imgPath;
    },
  });

from eleventy-plugin-lazyimages.

liamfiddler avatar liamfiddler commented on May 22, 2024

Hi @nothingrandom 👋

Images should be working - both locally and when pulled from a third-party server. To demonstrate this I've added some local images to the "basic" example.

Take a look at this commit to see what's changed.

Let me know if this example helps, or if you have a public repo I could look at 😃

from eleventy-plugin-lazyimages.

nothingrandom avatar nothingrandom commented on May 22, 2024

Hey!
Thanks for the quick reply :) It does help somewhat, I think I now see the issue.

I think one of the big differences might be the project structure. My structure is like this;

.
├── .editorconfig
├── .eleventy.js
├── .eslintrc.js
├── .git/
├── .gitignore
├── .lightserverrc
├── .npmrc
├── .nvmrc
├── .snyk
├── .travis.yml
├── .typo-ci.yml
├── README.md
├── _redirects
├── dist/
├── netlify.toml
├── node_modules/
├── package.json
├── postcss.config.js
├── src/
│   ├── _data/
│   ├── _includes/
│   ├── browserconfig.xml
│   ├── css/
│   ├── favicon.ico
│   ├── fonts/
│   ├── img/
│   ├── js/
│   ├── pages/
│   └── site.webmanifest.njk
├── utils/
│   ├── filters.js
│   └── shortcodes.js
├── webpack.config.js
├── yarn-error.log
└── yarn.lock

So .eleventy.js is in the root, files and images are both in src/, and the project is building into the dist/

Should I do something to fix this my end, or does this want to be a plugin change, with some more support for folder structure?

from eleventy-plugin-lazyimages.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.