-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
webpack-dev-server stops watching files for changes on .js syntax error #3175
Comments
Can you try with [email protected] |
I can't use |
I think you need to use webpack-dev-server/lib/options.json Line 493 in e809763
|
Can you create reproducible test repo? |
@snitin315 This works, thank you. I installed the latest version which is @alexander-akait #3168 - here you said that
But apparently the I will link my repo, it's fairly small so you can use it to reproduce: https://github.com/Darkzarich/sheets-project-training/tree/feature/basic-markup (this very branch only). In |
Yep, reproduced |
Bug, we need to set
|
@alexander-akait it should be done by |
I need investigate, WIP on this |
Bug on |
Any news on this? I have recently rewired my entire project from scratch again only to find this now being an issue, I am unsure if I did it wrong or its just an error on the lib's side of things? For me it just never even watches at all, without syntax error either. |
You can avoid using |
Care to elaborate just a bit, I am not sure where to set this option / I am not certain I use it. My devServer: {
contentBase: path.resolve(__dirname, 'dist'),
watchContentBase: true,
https: true,
host: '0.0.0.0',
disableHostCheck: true,
port: process.env.PORT || 8001,
openPage: `https://localhost:${process.env.PORT || 8001}`,
historyApiFallback: true,
stats: 'errors-only',
overlay: true,
}, |
Can you provide example/reproducible test repo? |
I can try to mock something up but will take some time, as the entire thing is super convoluted, give me 10 minutes or so to try to scrape from where I am and get it up as a new repo |
I tried making it on the sandbox but I can't for the death of me make it run, if you can figgure it out, be my guest: alternatively, find it on my github: https://github.com/DelliriumX/webpack-reload-clone It is a bit convoluted, but I've cut away a lot of the custom build thing out of it so some things might not make much sense, still doesn't work. I am not sure if my start script ( |
@DelliriumX you need https://github.com/pmmmwh/react-refresh-webpack-plugin plugin and set |
Thing is, I don't want hot, I want full page refreshes... This setup (without I get this kind of output: And it does recompile, just doesn't refresh the page |
@alexander-akait I've further reduced the clutter in that repo I've made, if you pull again you should have an easier time. This is now super-bare-bones, yet it still doesn't page-refresh. Should I open a separate issue or are the two related? |
It is fixed in |
Any chance you'd shed some light on how to "translate" this config I am currently using, into the devServer: {
// contentBase: path.resolve(__dirname, 'dist'),
contentBase: './dist', // same location as all other files (basically output.path)
hot: false, // i used to have it work without this, but im putting it here just in case
watchContentBase: true, // i used to have it work without this, but im putting it here just in case
https: true,
host: '0.0.0.0',
disableHostCheck: true,
port: process.env.PORT || 8001,
openPage: `https://localhost:${process.env.PORT || 8001}`,
historyApiFallback: true,
stats: 'errors-only',
overlay: true,
}, From what I could gather on the changelog quite a lot has changed, though I've not managed to find anything related to how the Sorry if I am too much of a bother, not really too experienced with these sorts of things. |
Please rename |
Sorry it took a while to respond, was hospitalized. I think I managed to do, to an extent what you suggested. Got a question, when you say devServer: {
static: './dist',
watchFiles: 'src/**/*.jsx',
hot: false,
watchContentBase: true,
https: true,
host: '0.0.0.0',
firewall: false,
port: process.env.PORT || 8001,
open: `https://localhost:${process.env.PORT || 8001}`,
historyApiFallback: true,
}, and I get this error:
I am assuming its related to some plugin? Not sure if it helps, here is what I am using: NodePolyfillPlugin, HtmlWebpackPlugin, MiniCssExtractorPlugin, VirtualModulesPlugin, ErrorOverlayPlugin, DefinePlugin, Dotenv, |
|
But I don't have any |
@DelliriumX What is version you are use? |
|
I think problem in |
Okay that finnally got it working, though it is not:
|
overlay is enabled by default |
just ends up with a blank white page, console has the errors though |
Can you show me? |
@DelliriumX it is feature, we will improve this in future, overlay don't show error from dev tools, but we will improve it |
@alexander-akait I used to use this one, since it has a nice preview, but it is now causing issues because of How about the |
@Darkzarich fixed by webpack/webpack#13276, update webpack to |
@DelliriumX Please avoid using other issues for questions and problems not related to original, it is bad
You can setup any location to open, what is the problem with open? What is Anyway if you thinking we have somewhere bug, please open the new issue using the issue template an describe problem |
Code
deps:
index.js
Expected Behavior
webpack-dev-server successfully refreshes the page or places in changes
Actual Behavior
A syntax error breaks watching files and webpack-dev-server stops showing any new changes (but compiles them, terminal tells this) until the page is refreshed manually with F5
The text was updated successfully, but these errors were encountered: