Giter VIP home page Giter VIP logo

Comments (9)

danielroe avatar danielroe commented on June 9, 2024

@JonathanDoelan Could you clarify what you think should be the default behaviour?

from sanity.

JonathanDoelan avatar JonathanDoelan commented on June 9, 2024

@danielroe the privateRuntimeConfig-part. But this maybe conflicts with the mode, where ssr=true and target=server. Because then it would always use the uncached cdn.

So I think it should be mentioned at least in the docs. For the reasons I‘ve described above.

from sanity.

danielroe avatar danielroe commented on June 9, 2024

@JonathanDoelan I don't think this is the right approach. I would instead simply create a plugin that - if in server mode - sets the useCdn option to false. Then I think you would achieve your desired behaviour of getting freshest content when statically generated, yet using the CDN on client-side.

from sanity.

JonathanDoelan avatar JonathanDoelan commented on June 9, 2024

@danielroe What do you mean? Making it default is not the right approach or putting it inside privateRuntimeConfig? Creating a plugin is simpler than the privateRuntimeConfig snippet (in the docs)?

from sanity.

danielroe avatar danielroe commented on June 9, 2024

@JonathanDoelan I don't think putting it inside privateRuntimeConfig is quite right given what you want to achieve. After all, this will hard code the useCdn: false into your generated pages...

from sanity.

JonathanDoelan avatar JonathanDoelan commented on June 9, 2024

@danielroe oh ok. I’ve spent quite some time to come to this solution. … how would you do it/how should I do it?

from sanity.

danielroe avatar danielroe commented on June 9, 2024

I would instead simply create a plugin that - if in server mode - sets the useCdn option to false.

from sanity.

JonathanDoelan avatar JonathanDoelan commented on June 9, 2024

@danielroe Here is my approach like you’ve suggested:

// sanity-no-cache.server.js
// Do not use Sanitys CDN when (pre-)rendering server-side and isStatic
export default ({ $sanity, isStatic }) => {
    if (isStatic) {
        $sanity.config.useCdn = false;
    }
}

But it does not work. It again takes the CDN, so that the prerendered app contains the old data.
How can we solve this?

from sanity.

danielroe avatar danielroe commented on June 9, 2024

@JonathanDoelan At the moment you'd need to overwrite $sanity.client completely, but I think your approach (of just setting config) is more intuitive, so I'll refactor.

from sanity.

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.