All Questions
Tagged with web-deployment or deployment
31,003 questions
0 votes
1 answer
34 views
Why does Next.js app render CSS on port 3000, but not port 80?
I am trying to deploy a Next.js app on my local machine as a "dress rehearsal" for deploying on a server. My Next.js app renders properly (i.e. the human eye will see shapes and colors in ...
1 vote
1 answer
27 views
Streamlit Deploy: “Unexpected error” when setting App URL (even if optional field is empty)
I am trying to deploy my Streamlit app using streamlit.io cloud. On the “Deploy an app” page, when I enter my GitHub repo, branch and main file it shows an Unexpected error under the “App URL” field. ...
1 vote
1 answer
21 views
How to create an APK file from a Xamarin project using the command line?
Can you tell me what I need to do to get the APK through the console? How do I check that all the needed tools are installed? And which command or set of commands will create the APK file? I can ...
-1 votes
0 answers
21 views
FastAPI text-classification API returns 42 while deploying
I had a chance to deploy a simple text-classification model using FastAPI and exposing a /predict endpoint that should accept a text input. But, every time I send a POST request with a string body the ...
0 votes
0 answers
14 views
How to replace MlFlow model
I have an MLflow model deployed in SageMaker, but when I try to update it I get this error: MlflowException: You are attempting to deploy an application with name: titanic-xgboost-endpoint in 'create' ...
-4 votes
1 answer
61 views
Vercel live site not updating UI changes after successful GitHub push and redeploy [closed]
I am building a Habit Tracker application using React (Vite) and Tailwind CSS, deployed on Vercel. The Problem: I recently updated a component (HabitList.tsx) to fix a UI issue where an input field ...
Best practices
0 votes
0 replies
38 views
When packaging a bash binary produced by Bazel, do I need to keep the rlocation/data location boilerplate?
I was trying to exercise with Bazel by packaging a deb package from a collection of scripts I'm writing to automate a few tasks at work. Right now, I keep them either in /usr/local/bin or \~/.local/...
0 votes
0 answers
53 views
Deploying Node.js application to IIS(CORS error though configured CORS configuration in Node.js server page) [duplicate]
I tried to deploy a Node.js application to IIS. I tried to send multipart form data from a frontend API as a post request. Though I have enabled CORS configuration in Node.js server.js page, CORS ...
Advice
2 votes
0 replies
46 views
3 years as a frontend dev but feel under-skilled — how do I restart learning and regain confidence?
I’ve been working as a frontend developer for around 3 years, but honestly, I feel stuck. My current company doesn’t really follow standard software engineering practices, and the work has become ...
-2 votes
0 answers
41 views
React Flow + Dagre layout issue when node content size varies
import dagre from 'dagre'; import { Node, Edge, Position } from 'reactflow'; export default function layoutDAG( nodes: Node[], edges: Edge[], dagType: 'T' | 'I' | 'D' ): { nodes: Node[]; edges: ...
0 votes
0 answers
23 views
MERN Project Backend Not Loading Data on Vercel Deployment
I’m trying to deploy my full MERN project (frontend + backend) on Vercel. The frontend works fine, but the backend is not loading data. I keep getting this error in the console: GET https://cutomer-...
0 votes
1 answer
48 views
In Next js project Error: <Html> should not be imported outside of pages/_document
I have having issues in vercel and render deployment, but i have checked all instances but not happening i have check other answers also but it is not working. Are there any things which I can do for ...
Advice
0 votes
0 replies
27 views
Cloud Run for deploying
I would like to deploy my app in sideloading. I have read tutorial on Gogle App Engine, but I'm evaluating Google Cloud Run because it seems cheeper. Do you know step by step tutorial/guide on this ...
Best practices
0 votes
1 replies
52 views
How to deploy an Angular SSR app using AWS?
As I searched online many times but didn't find a satisfying answer, I'm asking my question here. I have an Angular app (version 20) that uses SSR and I would like to deploy it using AWS. I know how ...
0 votes
2 answers
42 views
Next.js multilingual routing. Main page site.com always redirect to site.com/en instead of staying on site.com
devs! I'm trying to build a multilingual website based on Next.js(15.6) Node 22.21.10. Locally I have no issue with routing everything works as expected. Both lang versions are served as expected. (...