polyglot-microfrontends / root-config

The root config for polyglot microfrontends
MIT License
50 stars 35 forks source link

Demo has stopped working #19

Open richRubie opened 7 months ago

richRubie commented 7 months ago

I'm getting a 403 when trying to access https://storage.googleapis.com/polyglot.microfrontends.app/importmap.json

UserProjectAccountProblem The project to be billed is associated with a closed billing account.
The billing account for the owning project is disabled in state closed
kchung81 commented 6 months ago

you can replace the importmap.json with an inline script found here: https://github.com/polyglot-microfrontends/shared-dependencies/blob/master/importmap.json

so it'll look like:


<script type="systemjs-importmap">
 {
    "imports": {
      "single-spa": "https://cdn.jsdelivr.net/npm/single-spa@5.9.0/lib/system/single-spa.min.js",
      "react": "https://cdn.jsdelivr.net/npm/react@17.0.1/umd/react.production.min.js",
      "react-dom": "https://cdn.jsdelivr.net/npm/react-dom@17.0.1/umd/react-dom.production.min.js",
      "vue": "https://cdn.jsdelivr.net/npm/vue@2.6.12/dist/vue.min.js",
      "vue-router": "https://cdn.jsdelivr.net/npm/vue-router@3.4.9/dist/vue-router.min.js",
      "single-spa-angularjs": "https://cdn.jsdelivr.net/npm/single-spa-angularjs@4.1.0/lib/single-spa-angularjs.js"
    }
  }
</script>