Dan Gamble
Dan Gamble
I think it also ignore `ignoreFiles` too fwiw.
[You can still use an environment variable called `SCOPES`](https://github.com/Shopify/shopify-app-template-node/blob/main/server/index.js#L20)
> We just released v1.1.0. We have just released a checksum value in the asset API (in the unstable api version) and so we have enabled themekit to now only...
Thanks for the update @andyw8!
Check [this branch](https://github.com/Shopify/shopify-app-node/tree/multi_page_fe_template)
Just incase it's of any use to anyone. I'm doing this for now: ```javascript class RedisStore { constructor () { this.client = new Redis(process.env.REDIS_URL) } async storeCallback (session) { try...
I'm still experiencing this on Themekit as well as Slate. It takes 2 reloads to see the new version on Themekit and the automatic reload + a manual reload on...
Hey @tanema, Do you know if there is any update on this one? Have been experiencing this one constantly for the last ~6 months or so now. If not does...
You can find a good example here: https://github.com/t-kelly/nextjs-shopify-app/blob/main/lib/redis.js https://github.com/t-kelly/nextjs-shopify-app/blob/main/lib/shopify.js#L12
One way i currently get around this is: ```javascript getElements('[data-module]').forEach(el => { const name = el.getAttribute('data-module') const Module = require(`../modules/${name}`).default new Module(el) }) ``` On each section i'd add a...