hbuilderx uniapp如何配置安装的插件只对当前项目生效
时间: 2023-05-24 09:02:23 浏览: 397
HBuilderX项目配置使用uview
您可以通过在项目根目录下创建.vscode文件夹,并在文件夹中创建一个settings.json文件来配置HBuilderX插件只对当前项目生效。在settings.json中加入以下内容:
{
"workbench.colorTheme": "Default Dark+",
"editor.fontSize": 14,
"editor.tabSize": 2,
"files.associations": {
"*.wpy": "vue"
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/dist": true
},
"hbuilderx.plugin.path":
[
"工作空间",
"/path/to/project/.hbx-plugins"
]
}
在最后一行代码中,您可以将“/path/to/project/”替换为您的项目路径,从而使插件仅适用于当前项目。
阅读全文