赞
踩
因为没有默认配置别名,需要在 vite.config.ts 与 tsconfig.json 添加配置
//vite.config.ts
export default defineConfig({
resolve:{
alias:{
'@':path.resolve(__dirname,'./src')
}
}
})
//tsconfig.json
{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@/*": ["./src/*"]
},
......其他
}
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。