You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Actually, this was caused because outputPath was doubled up somehow due to it having the same value as webpack's output.path. Is this a bug, or expected behaviour?
The path you put in outputPath of this plugin is relative to Webpack's output.path (they are probably combined via path.resolve()). This means that if you put the same path in both output.path and outputPath you will have those "doubled up" paths. I believe this is intended, but the docs of this plugin don't describe this behavior.
This is also why you see your outputPath in logs, because in your configuration their parent directories are not the same as Webpack's output.path. If you remove this setting (the 2nd step above), you'll see what you expect.
It's not consistent with the rest of the webpack log:
The text was updated successfully, but these errors were encountered: