Closed dugajean closed 4 years ago
Thanks for submitting this issue! Due to our limited time, we ask you to include a reproduction link to a minimal full reproduction of your problem (for example in a GitHub repository) so we can find what is causing the issue. Thank you for your understanding!
Hello! This issue has gone quiet. Spooky quiet. 👻
We get a lot of issues, so we currently close issues requiring feedback after 20 days of inactivity. It’s been at least 10 days since the last update here. If we missed this issue or if you want to keep it open, please reply here. (A maintainer can also add the label not stale
to keep this issue open.)
Thanks for being a part of the Vue community! 💪💚️
Hey again! 😸️
It’s been 20 days since anything happened on this issue, so our friendly neighborhood robot (that’s me!) is going to close it.
Please keep in mind that I’m only a robot, so if I’ve closed this issue in error, I’m HUMAN_EMOTION_SORRY
. 🤖 Please feel free to reopen this issue or create a new one if you need anything else.
Thanks again for being part of the Vue community! 💚️
Version
4.0.5
Environment info
Steps to reproduce
cross-env NODE_ENV=test vue-cli-service serve --mode test
What is expected?
Should turn on the server with no issues
What is actually happening?
Blows up at SCSS variables that are actually there. Works fine with
vue-cli-service serve
Recently upgraded to Vue CLI 4 and my Sass Loader isn't letting me serve my web app in test mode. My test mode command looks like this:
When I run this command, I get the following errors:
The thing is that
_main.style.scss
and_myapp.style.scss
are loaded INTO the file where those variables are declared and are never referenced anywhere on their own. Something like this:When I run
npm run serve
("serve": "vue-cli-service serve"
), my app starts up fine.Why aren't my styles loading properly in test mode?