Giter Club home page Giter Club logo

Comments (5)

hayes0724 avatar hayes0724 commented on May 24, 2024

This can happen when there are files shared between both layout and template entry points in webpack 5. You can disabled shared bundles, let me know if this works for you.

packer-config.js

// Override default packer settings and config using this file
module.exports = {
  'build.sharedBundles': false,
}

from shopify-packer.

marcelaerts avatar marcelaerts commented on May 24, 2024

Yes that seems to work. I'm not sure this fix is causing a new error but not it looks like the resources are not being loaded:
Failed to load resource: net::ERR_CERT_AUTHORITY_INVALID runtime.js
Failed to load resource: net::ERR_CERT_AUTHORITY_INVALID layout.theme.js
etc.

Also browser-sync stopped working. I see the resources are loading on 127.0.0.1 and not on localhost. Could this be a SSL problem? I'm not really sure how to fix this.

from shopify-packer.

hayes0724 avatar hayes0724 commented on May 24, 2024

This is common for any Shopify build system. You need SSL to proxy the liquid files and this requires a trusted cert. The only cert you can use locally will be a "self signed cert" which all browsers will not trust initially, unless you create or have a CA (cert authority) to issue it. When your browser sees the self signed cert it will block the network request (all js files) and the site will render without css or js.

All you need to do is accept/trust the cert on 127.0.0.1:3001 note you may have done this already for 127.0.0.1:3000 where everything but the js/css is served from.

Quick fix

  1. look in the developer console on chrome (make sure it is open before loading the page), look for the red error message with theme files should be several, example: https://127.0.0.1/layout.theme.js.
  2. Right click, then click open in new tab, warning should appear, click proceed, then refresh the website

see docs on ssl for more details: SSL Docs

from shopify-packer.

marcelaerts avatar marcelaerts commented on May 24, 2024

The errors are still there:
ERROR in Conflict: Multiple assets emit different content to the same filename ../snippets/script-tags.liquid
ERROR in Conflict: Multiple assets emit different content to the same filename ../snippets/style-tags.liquid

// Override default packer settings and config using this file
module.exports = {
'build.sharedBundles': false,
}

This is not working.

from shopify-packer.

hayes0724 avatar hayes0724 commented on May 24, 2024

@marcelaerts can you check your src/assets folder for the above files?

They should be generated automatically by webpack html plugin. If you have them in the above folder (can happen if you download from live site) it will cause it be generated twice and webpack won't know which to use.

from shopify-packer.

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.