ruoyi框架启动前端
最近公司一个新项目用若依框架。我是后端,但是因为可以直接生成代码所以需要前端也启动起来。记录一下怎么启动。首先安装nodejs,这个不多说都可以,注意最新版本的需要windows在8或者以上。然后安照以下步骤安装启动项目:我的win7安装yarn的时候报错error postcss@8.3.11: The engine "node" is incompatible with this module
最近公司一个新项目用若依框架。
我是后端,但是因为可以直接生成代码所以需要前端也启动起来。
记录一下怎么启动。
首先安装nodejs,这个不多说都可以,注意最新版本的需要windows在8或者以上。
然后安照以下步骤安装启动项目:
我的win7安装yarn的时候报错
error postcss@8.3.11: The engine "node" is incompatible with this module. Expected version "^10 || ^12 || >=14". Got "13.14.0"
error Found incompatible module.
info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command.
进行这个设置之后,会正常。
yarn config set ignore-engines true
但是这是什么原因那?
解析如下:
我的node.js安装包是8.2版本的,支持vue-cli 3.0版本以上需要v8.9以上
于是我去node.js官网下载了新版本,再次yarn add g【page】 安装ok了。
更多推荐
所有评论(0)