我需要将 Vue.js 项目添加到 yocto 图像中。我正在使用 devtool 创建配方。
'devtool add git@github.com:LorchAW/vueapp.git'
然后我构建了配方,现在我可以在我的目标(/usr/lib/node_modules)中看到 vueapp 不,我对如何在目标中运行它感到困惑?我的 package.json 看起来像这样..
{
"name": "vueapp",
"version": "0.2.0",
"private": true,
"scripts": {
"builddev": "vue-cli-service build --mode development",
"serve": "vue-cli-service serve --port 8080",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {.....}}
我应该如何运行它?