如何配置PHPStorm以支持Vite - 别名
原文英文,约200词,阅读约需1分钟。发表于: 。If you have trouble using "Declaration or Usages" hotkey to navigate to files importing from aliases while working with JS (or Vue) files, example: <script setup> import SomeComponent from...
在JS或Vue文件中使用别名时,如果快捷键无法导航,可以在项目根目录创建phpstorm.config.js,内容为:System.config({ "paths": { "@/*": "./resources/js/*" } }); 这样PHPStorm就能识别别名并正常导航。