Skip to content
Advertisement

Tag: github

CSS files not loading correctly on github pages

I am making a calculator app with multiple themes and everything works locally but the problem is occuring on the github pages. Each theme for the calculator has its own css file and I am using javascript to change href of the link tag based on the selected theme (theme-1 is selected by default): HTML: Javascript: When I view my

Getting error : “react-dom.production.min.js:216 TypeError: Object(…) is not a function” while deploying react app on github pages

I am trying to deploy my react application and its not rendering the page properly, It is throwing the below error : react-dom.production.min.js:216 TypeError: Object(…) is not a function. I have linked the screenshot of the error and the file name along with my github link of the repo.[![ link to my repo: https://github.com/AbhishekTomr/money-tracker Answer The issue is resolved now

How to update the package.json version using semantic-release/git?

What I want to do Based on the FAQ https://semantic-release.gitbook.io/semantic-release/support/faq#why-is-the-package.jsons-version-not-updated-in-my-repository I want to update the package.json version number on a new release. What I did Create a new empty private Github repository for an organization temp with a README.md and .gitignore for node Clone the repository Fix the first commit message via git rebase -i –root and change it to

Deployed React app to github pages is blank

I’m following instructions from https://github.com/gitname/react-gh-pages to deploy my react app to github pages. At the link I’m getting a blank page though and a 404 error: Failed to load resource: the server responded with a status of 404 () My app works on local host I searched around and its likely my homepage link that is wrong? link to my

electron-builder doesn’t create a release in GitHub when publish is set to always, though there are no errors

I am trying to publish an electron app to my GitHub repository’s releases. Here is my package.json When I run the npm run deploy script, I expect it to create a release called v1.0.1 in the GitHub repository, but nothing happens. electron-builder’s output doesn’t show any error. Here is the console output: As you can see from the last two

Advertisement