483 questions
0
votes
0
answers
44
views
.NET 10 MAUI Hot Reload fails: “No method by the name ‘GetProjectFullPathAsync’ is found”
After updating my Mac to macOS Tahoe 26.0.1 and Xcode 26, the XAML Hot Reload in my .NET 10 MAUI projects stopped working.
When I make any XAML change, the app stays unchanged and the output shows:
...
0
votes
2
answers
140
views
Why does useEffect on [] gets called on hot reload?
app/page.tsx
"use client";
import { useEffect, useRef } from "react";
import { foo } from "./OrdersModuleFoo";
import React from "react";
const OrdersModule: ...
1
vote
0
answers
92
views
How to remove Hot Reload Service in .NET
I need to unload the Hot Reload Service from a Blazor app. Simply disabling Hot Reload from the settings does not do that. I am using Visual Studio 2022.
I have tried the recommendations from other ...
0
votes
0
answers
36
views
Flutter Web: Closing web tab doesn't stop app or trigger "Lost connection to device"
I'm developing a Flutter Web app and running it from Android Studio. The app launches successfully in the browser and works fine. However, when I close the browser tab, the Flutter process in Android ...
1
vote
0
answers
120
views
Next.js generateMetadata not applying correctly with conditional rendering in layout - metadata only loads after hot reload
I'm working on a multi-tenant Next.js application where I'm experiencing an issue with metadata generation. When a valid subdomain exists and the tenant is found, everything works perfectly - the app ...
0
votes
0
answers
164
views
Blazor Hot Reload issue with .NET 8
I have a very specific CSS hot reload issue during VS 2022 17.11.4 debugging sessions with my Blazor .NET 8 server app - I think the fine details matter here.
My scoped CSS file appears in the ...
0
votes
1
answer
132
views
ModuleNotFoundError only when I run flet app from terminal
I'm working on a flet app and everything works fine when I run the app using PyCharm. The problem is that I want to try the hot reload provided by flet but when I run the app via the terminal I get a ...
0
votes
1
answer
29
views
why does hot reload have a text glitch when loading form
hot reload flutter is working very poorly for me, I need to click on the hot reload 20 times so that the text is loaded as a result
enter image description here
import 'package:flutter/material.dart';
...
0
votes
1
answer
52
views
Webpack 5 hot reload from different port (seperate application using the build)
The issue I'm stuck on is hot reload is trying to go to localhost:8000/build (where the application build is being used)
instead of localhost:3000/build which is the webpack-dev-server build location.
...
0
votes
2
answers
358
views
How can I make Visual Studio watch my Typescript files for changes?
I'm working on a legacy, rather outdated MVC project, where I've been tasked with adding several major new features. Although most of the UI is in Razor, one of the features will involve a fair bit of ...
3
votes
1
answer
860
views
Issue with ng build --watch and npm link in Angular 18
I’m working on an Angular project that uses an Angular library. I recently upgraded both from version 17 to 18. In version 17, I was using ng build --watch along with npm link to enable hot reload for ...
-1
votes
1
answer
172
views
Is it possible to hot reload (without refreshing the page) in symfony + react project?
I tried in webpack encore to configure dev-server for hot reload. After making changes and pressing ctrl + s, the page refreshes and you can see the changes. But is it possible to make the changes ...
2
votes
0
answers
145
views
How to import a monorepo package into an app with hot-reload?
I have a turborepo monorepo with the following structure:
- apps
- a
- packages
- x
The packages/x folder exports some components in a index.tsx file.
The apps/a folder needs to import these ...
0
votes
1
answer
985
views
"Hot Reload" feature seems sluggish and or buggy
What I'm Building
I am building a Blazor (Interactive Server) web application using .NET 8.0
Machine & Software
I am using a Mac Pro (Intel 2019) with macOS Sonoma and Rider 2024.2. All software ...
0
votes
0
answers
65
views
Vite + React: Autoreload Local Library
I am working on a React + Vite project with Firebase. I share some logic between firebase functions and the frontend, so I want to extract that to a shared library. I have set my directories up up as ...
0
votes
2
answers
502
views
flutter won't print anything on the debug console
In Visual Studio Code, programming in Dart as a part of a Flutter course, no prints are shown in the debug console when hot reloading, only the "Reloaded..." message.
When creating a flutter ...
2
votes
0
answers
426
views
How to Set Up Hot Reload for Gin Application Using Docker and Air in Dev Environment?
I'm working on a backend system using Gin and Docker, and I'm trying to set up two different environments: development and production. In the development environment, I want to use Air for hot ...
1
vote
3
answers
457
views
Docker compose volume binding doesn't work on windows
I have created the below docker-compose file in my app:
version: '3.9'
services:
MongoDB:
...
backend:
...
frontend:
stdin_open: true
tty: true
build: ./frontend
image:...
0
votes
1
answer
724
views
How to link Raylib with hot reloading in C++ (Windows + Linux platforms)
Context
I am making a game in C++ (I am fairly new to the language) and have been using the Raylib library to handle things like windowing code, I am trying to get a very basic hot reloading test ...
1
vote
2
answers
4k
views
Hot reload/deploy in Java and Spring Boot
I would like to know how hot reload/deploy works in Java and Spring Boot.
In Java, whatever the jar files we have given to the JVM as a system classpath (passes to the system classloader) can't be ...
1
vote
1
answer
715
views
How to setup Rancher Desktop on macOS so that Vite server hot reload will not take ages
I recently moved from Docker Desktop to Rancher Desktop. However, once I did that, Vite hot reload functionality stopped working on my Laravel Sail project.
After further investigation I figured ...
0
votes
0
answers
72
views
Django Hot Reload
I am running docker image of a Django application with an entrypoint like this:
export PYTHONUNBUFFERED=1
python3 manage.py runserver 0.0.0.0:8080
In settings.py DEBUG=True.
However StatReloader doesn'...
1
vote
1
answer
816
views
Blazor css isolation hot reload not working
I have a Blazor component named Comp.razor and nested inside it is a Comp.razor.css file. All of these files are located in a class library project. In my main project (the one I launch the app from), ...
0
votes
1
answer
120
views
Hot reload not working in flutter on andriod emulator but working on Chrome (web)
When i save the code the hot reload works when i'm running the code Chrome (web) but it does not work when I run the code on an virtual andriod emulator such as Pixel 7A. Can anyone explain why?
...
0
votes
1
answer
52
views
Page is not updated with HotReload message
I have a Blazor Server Side hosted with WebassemblyClient application on .NET 8, which has been around since .NET 5 and has been repeatedly updated. At some point hot relaod stopped working. I would ...