-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Do not overwrite the output.path #337
Comments
@sokra Any chance of this behaviour changing in 2.0.0? |
This also caused the issue in #266, probably #473, and would be a good first step to fix #106. @sokra, what's your opinion about this? I'd say that we should require |
WDS doesn't use the The assignment was originally to enforce linux style paths, because the prev versions of memory-fs doesn't support windows style paths. But as it supports it now it should be fine to remove this. |
@sokra, all right, I'll remove that in v2 then. |
The assignment was originally to enforce linux style paths, because the prev versions of memory-fs doesn't support windows style paths. But as it supports it now it should be fine to remove this. Ref #337
Removed it in the above commit. Performed a few tests with different setups in the |
Just to clarify for me: with Webpack 1.x we had to define outputPath in our devServer config so that we could have the resources written on disk (via write-file-webpack-plugin). Can I now remove outputPath from my devServer config with Webpack 2 rc1 / webpack-dev-server 2 rc1 ? |
webpack-dev-server
overwrites theoutput.path
parameter of the user supplied config (gajus/write-file-webpack-plugin#1).output.path
.output.path
value inaccessible from the plugin.The text was updated successfully, but these errors were encountered: