vscode:常用命令(运行项目,打包等)及融合后端springboot项目

时间:2024-03-21 20:29:00

环境:安装node.js,安装npm,cnpm,安装项目依赖并运行项目

参考:https://segmentfault.com/a/1190000013950461

运行项目 :npm run dev 
打包项目:npm run build

注意:打包后项目目录中会自动生成dist文件夹,如图:

vscode:常用命令(运行项目,打包等)及融合后端springboot项目

index.html放入static文件夹,和后端融合,则需要将static整个目录放入后端如springboot的web项目的resource文件目录下

如下图:

vscode:常用命令(运行项目,打包等)及融合后端springboot项目