-
Hello, I need some guidance on investigating an issue I have running I described the question on stackoverflow in more detail. Can you help me with some hints where I should start investigating the issue? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I have found out the answer by using The entry points for webpack seemed weird to me, as it assumed that the entrypoint for
So i changed my
Now this makes no problems anymore. Maybe this is a bug in webpack or vue-cli, since the behaviour is totally random and worked for a long while, but the problem only appeared after the size of the codebase increased? |
Beta Was this translation helpful? Give feedback.
I have found out the answer by using
vue-cli-service inspect
The entry points for webpack seemed weird to me, as it assumed that the entrypoint for
app
is alsomain.js
So i changed my
vue.config.js
to account for this wrong assumption and this is what the output ofinspect
is:Now this makes no problems anymore.
Maybe this is a bug in webpack or vue-cli, since the behaviour is totally random and worke…