Vite兼容性注意
Vite需要Node.js版本 >= 12.0.0
使用yarn构建项目
1 | yarn create vite xxx --template vue-ts |
这里xxx
换成项目名称
项目结构如下所示:
1 | ├── public 静态资源 |
接着我们输入cd xxx
=> yarn
=> yarn dev
项目就可以启动了
修改vite.config.ts配置文件
vite.config.ts是vite的核心文件,有关vite的配置都在这里配置。
1 | import { defineConfig } from 'vite'; |
上面的配置别名时报错了,使用import方法引入path也不行,使用require引入path提示我们需要安装@types/node
解决方法
1、安装types/node依赖
1 | yarn add @types/node -D |
2、在tsconfig.json中添加配置”types”: [“node”]
1 | { |
如上配置,即可使用别名了