Skip to content

vue-cli-service serve compiles successfully, but my code is missing from the bundled output. #6548

Answered by ViggieM
ViggieM asked this question in Q&A
Discussion options

You must be logged in to vote

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 also main.js

### WRONG
entry: {
  app: [
    './src/main.js',
    '<directory path>/src/vue.js'
  ],
  main: [
    '<directory path>/src/main.js'
  ]
}

So i changed my vue.config.js to account for this wrong assumption and this is what the output of inspect is:

### THIS WORKS
entry: {
  app: [
    './src/main.js',
    '<directory path>/src/main.js'
  ],
  otherstuff: [
    '<directory path>/src/index.js'
  ]
}

Now this makes no problems anymore.

Maybe this is a bug in webpack or vue-cli, since the behaviour is totally random and worke…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by ViggieM
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant