Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 8 hours ago.
Improve this question
I have already check some topic like this one to find some help, but, honnestly i still don't know how to fix it.
So, i did a little project and i'm trying to put it on github pages.
link of project : https://zkittygb.github.io/cv/
Now, when i m going to check my pages, i got some errors 404 (6 to be exact).
i already did a build, install gh-pages lib and add : "homepage": "https://github.com/zKittyGB/cv.git" in my package.json.
Then i did a build and a deploy.
I fixed 3 of them after deleting link in the manifest, but i still have the error about main.js and main.css.
So, how can i fixe it?
Is it a link issue again?
If yes, where should i change them ? directly in the build folder ?
Thx for the help
if you use react for make static website and want hosting im suggest use gatsby cloud free, netlify , and vercel , i dont know if github can read js 6
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed last month.
Improve this question
I am trying to fetch Wordpress posts via graphql in my Next.js application, using the git repository "https://github.com/vercel/next.js/tree/canary/examples/cms-wordpress".
I am getting the following error: "Error: Invalid with child. Please remove or use .
Learn more: https://nextjs.org/docs/messages/invalid-new-link-with-extra-anchor This error happened while generating the page. Any console logs will be displayed in the terminal window."
I am not sure what is causing this error or how to fix it. Could someone please help me understand what is causing this issue and how to resolve it?
Starting with Next.js 13, Link renders as a, so attempting to use < a > as a child is invalid.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 1 year ago.
Improve this question
I was using netlify to deploy my app and I noticed that we cant access website using manual routes, and results in displaying 404 :
https://edurekaclone.netlify.app => WORKS
https://edurekaclone.netlify.app/courses/5b21ca3eet4r6fbccd471815 =>Does not works
Even simple routes when visited manually like /login, are not working
We have to First visit homepage and navigate to other routes/pages from there only.
I am using react-router-dom and its purely frontend without any server
I found the fix, in documentation as mentioned by #jonsharpe, Thanks
Basically you need a rewrite rule here which should be present in build/ folder, and would enable to access clean URLs
->>
1. Add _redirects file in public/ folder
2. Inside _redirects add /* /index.html 200
->>
and Voila!
This will also be reflected in the build deploy summary and logs
-->Reference
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 1 year ago.
Improve this question
I'm working on angular application. Once my application is initiated script.js file showing "initiated by login". After logging in it showing "initiated by the dashboard". Why it is initiating more than once?
Thanks in advance.
Both script files are part of the global scripts from angular framework.
The content of scripts.js comes from the scripts section in the angular.json.
The vendor.js contains npm modules being used in the app.module.ts.
The multiple initialization may be caused by Module lazy loading, but it is hard to say. It would be helpful, if you could provide some more information about your application, e.g. the routes from the app-routing.module.ts
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
My website is mockmydata.com - This website is from a template - it opens fine on my local machine, but when I host it, the pop-ups don't work as expected.
Is it something to do with my "#" tag or is it a javascript that is causing the issue?
It's because you have a problem with your server.
403 Error when you try to load the Jquery file
You have two solutions :
Use a CDN
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha256-pasqAKBDmFT4eHoN2ndd6lN370kFiGUFyTiUHWhU7k8=" crossorigin="anonymous"></script>
Or
Solve your miss configuration on your server, maybe you use a .htaccess that remove the access to your file
Your server returns HTML response status 403 for every JavaScript it's trying to load (jQuery for example).
That may be the reason that none of your JavaScript is functioning.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 3 years ago.
Improve this question
Execution failed for task
':app:transformNativeLibsWithMergeJniLibsForDebug'. > More than one
file was found with OS independent path
'lib/arm64-v8a/libc++_shared.so'
This happens when trying to build APK from this file https://github.com/node-on-mobile/node-on-android
Try adding this inside your build.gradle:
android {
...
packagingOptions {
exclude 'lib/arm64-v8a/libc++_shared.so'
}
}
I had the same issue compiling the project, the solution I found is in two steps:
Rename jniLibs/arm64-v8a/libc++_shared.so to jniLibs/arm64-v8a/libc++node_shared.so
Change line 401 of src/main/include/node/common.gypi into
'CLANG_CXX_LIBRARY': 'libc++node',
There is also a repository issue where I'm going to suggest this solution.