Last active
March 12, 2022 08:05
-
-
Save seanpianka/aa58d619d51d7f4b12b8e5a672a01c64 to your computer and use it in GitHub Desktop.
JetBrains WebStorm vue.js, "Module is not installed", fix "@" in imports
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://intellij-support.jetbrains.com/hc/en-us/community/posts/115000556284/comments/360000146344 | |
Specify the absolute path to `node_modules/@vue/cli-service/webpack.config.js` as a webpack config under `Languages & Frameworks / Javascript / Webpack`. |
I'm glad it helped you @Mandrake27!
On WebStorm 2020.3.2, after I specified the webpack config itself it still doesn't work, however when I do this it works:
- quit WebStorm completely
- delete the old
.idea
folder (or rename it to something like.idea.bak
) - open WebStorm again
- specify the webpack config now
- click Apply and wait for WebStorm to analyze the webpack config. It should work now.
Hope this helps anyone.
@seanpianka, thank you so much.
thank's @seanpianka 👍
@GalvinGao thanks, your solutions works for (newly updated as today) to PhpStorm 2021.3
🙏
@seanpianka Thanks 👍
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!