-
在
vite.config.ts
中增加配置
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
const path = require('path')
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src')
}
}
})
需要安装node的类型声明文件
yarn add @types/node -D
修改tsconfig.json
,增加如下配置
{
"compilerOptions": {
// ...
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
}
}
注意:修改完 vite.config.ts 文件需要重启
以上写法在vite^3.2.3版本中有报错
解决:
<