-
Notifications
You must be signed in to change notification settings - Fork 135
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
problem solved but... #148
Comments
even with node.js version 15.0.0 the error "failed to compile" comes out. |
io ci sono riuscito e fatto, vi spiego il passaggio vi scaricate la versione 1.0.10 entrate nella cartella del progetto
aspettate un pò perché vi dovrà scaricare tutta la roba sul container virtuale che vi creerà. una volta fatto questo aprite la dashaboard di docker e andate su Containers/APP che faremo noi? beh, creeremo un nuovo utente quindi nel terminale che vi si è aperto in precedenza cliccando su >_ dobbiamo installare questo apache2-utils e lo installeremo con i comandi di linux, in questo modo : fatto ciò , ragazzi è fatta! potete accedere a localhost:8080 e inserirete i vostri dati utente come le avete creati , accedete e il piatto è pronto, purtroppo il codice qr non è valido , qualcuno ha delle idee? |
|
per chi ha questo problema, la soluzione è questa
Although it is not specific to this project, I got the exact error in my react project when I was trying to proxy request from http://localhost:3000 to http://localhost:8080.
I solved this issue by removing "proxy": "localhost:8080" from package.json and creating a setupProxy.js file in the src folder with the following code:
const { createProxyMiddleware } = require('http-proxy-middleware');
module.exports = function(app) {
app.use(
'/api',
createProxyMiddleware({
target: 'http://localhost:8080',
changeOrigin: true,
})
);
};
una volta risolto questo problema che avevo pure io, il sito parte ma mi si apre la schermata con il pallino che gira all infinito.
qualcuno ora saprebbe darmi una mano
The text was updated successfully, but these errors were encountered: