Resium - craco-resium app deployment on gh-pages - baseUrl not working - cesiumjs

Got the following error when deploying on gh-pages. Localhost is working perfectly. Not sure about the origin, could be the web worker.

Related

how to fix a "no entries found error" when building for production with parcel bundler?

Server running at http://localhost:1234
× No entries found.
at Bundler.bundle (C:\Users\USER\AppData\Roaming\npm\node_modules\parcel-bundler\src\Bundler.js:275:17)
at async Bundler.serve (C:\Users\USER\AppData\Roaming\npm\node_modules\parcel-bundler\src\Bundler.js:842:7)
at async Command.bundle (C:\Users\USER\AppData\Roaming\npm\node_modules\parcel-bundler\src\cli.js:224:20)
parcel-build and server rendering was working just fine until i tried hosting my project via netlify, the site couldn't be deployed by netlify and their Docs suggest to ensure the site is deploying just fine locally, going back to VSCode i tried rendering the page via the terminal using "parcel index.html", the site deploys just fine but when i try "parcel build" above is the error am getting, please help.

Chrome crashes on loading serviceworker for localhost

Using Workbox's Get Started Guide, I have recently gotten a service worker working on my webapp. However, after adding networkFirst, the app did not register any cached js. However, the service worker needed to be restarted and reloaded before any logs showed up in the console.
After adding CSS caching, when I load my webapp in Chrome using localhost, it crashes. The app does not crash Firefox.
I've posted this to bug reports (sw.js file posted there) but thought I'd try here in case anyone has experiences and solved this, or it's an issue with my files or file structure.
mywebsite
--/static
- sw.js
- index.html
- main.js
- manifest.webmanifest
-- /favicons
- manifest.json

v3 where to get git_url?

I am trying to clone to my local git repository.
From Mac terminal:
git clone git_url directory_to_create
In the web console, I tried to use the GitHub Webhook URL and Generic Webhook URL. But I got this error: The requested URL returned error: 405
Any suggestions?
OpenShift doesn't host a Git repository for you. It relies on you having a separate hosted Git repository to pull application source code from. Alternatively, you can use a binary input build and push source code from your local system.
If you already have a deployed application how did you create it?
If it was a sample S2I application, you need to go to GitHub where the source code for that sample application was and clone it into your GitHub account. You can then check it out from your fork in your own GitHub account to your local system. You will though need to update the build configuration for the application in OpenShift to then use your fork of the original sample application.

net::ERR_INSECURE_RESPONSE deploying heroku app to google domains

I have a heroku app set up at http://employbl.herokuapp.com. I own the employbl.com domain on google domain so I would like employbl.com and www.employbl.com to render the website hosted on heroku.
I added the domain to the heroku config:
$ heroku domains:add www.employbl.com
▸ heroku-cli: update available from 6.13.13 to 6.14.27-c74500f
Adding www.employbl.com to ⬢ employbl... done
▸ Configure your app's DNS provider to point to the DNS Target
▸ www.employbl.com.herokudns.com.
▸ For help, see https://devcenter.heroku.com/articles/custom-domains
The domain www.employbl.com has been enqueued for addition
▸ Run heroku domains:wait 'www.employbl.com' to wait for
▸ completion
$ host www.employbl.com
www.employbl.com is an alias for www.employbl.com.herokudns.com.
www.employbl.com.herokudns.com has address 23.21.222.104
www.employbl.com.herokudns.com has address 23.23.118.21
www.employbl.com.herokudns.com has address 23.23.151.35
www.employbl.com.herokudns.com has address 174.129.214.98
www.employbl.com.herokudns.com has address 23.21.245.33
www.employbl.com.herokudns.com has address 23.21.55.239
www.employbl.com.herokudns.com has address 54.225.70.24
www.employbl.com.herokudns.com has address 23.21.228.1
In the Google Domains console I created a custom resource record and a synthetic record as outlined here and specified in the heroku docs
The application renders fine at employbl.herokuapp.com but when I navigate to www.employbl.com the HTML renders for my application but the Javascripts and CSS do not. It is a Vue.js app so nothing renders in the browser. In the console I get an error:
GET https://www.employbl.com/css/app.css net::ERR_INSECURE_RESPONSE
www.employbl.com/:37
GET https://www.employbl.com/js/app.js net::ERR_INSECURE_RESPONSE
How can I configure google domains and heroku to play nice together and render my heroku hosted application on the www.employbl.com URL?
I am running OSX sierra and the latest Chrome version
It turns out in my app service provider (Laravel) I was forcing HTTPS for all requests. Once i turned that off it rendered properly

polymer serve with components

I have been facing issues with the polymer-cli since I installed it. I am not able to serve components during development. I have to write my own Node.js server with remapping urls to work with components. But the documentation page clearly suggests that it had already done this work with its own tool.
What I did
Create a component using polymer-cli's polymer init
Serve the component using polymer serve
The result is unexpected and caused the following errors:
Polymer version: 0.18.0-pre.15
Ubuntu 16.04.2 LTS x64
On running polymer serve
info: Files in this directory are available under the following URLs
applications: http://127.0.0.1:8081
reusable components: http://127.0.0.1:8081/components/test-element/
A) If I try to open localhost:8081
GET http://localhost:8081/webcomponentsjs/webcomponents-loader.js 404 (Not Found)
GET http://localhost:8081/iron-component-page/iron-component-page.html 404 (Not Found)
B) If I try to open `localhost:8081/components/test-element/demo/
The url redirects to http://localhost:8081/home/user-name/project-root/test-element/
The index page in the project root directory is served.
GET http://localhost:8081/home/user-name/project-root/webcomponentsjs/webcomponents-loader.js
GET http://localhost:8081/home/user-name/project-root/iron-component-page/iron-component-page.html 404 (Not Found)