编辑
2023-04-01
Vite
0

将静态资源引入为url

vue
... <script lang="ts" setup> import imgUrl from './img.png' ... </script>
编辑
2023-04-01
Vite
0

别名配置与代理配置

别名配置

说明

用于配置某些文件夹的路径别名,如webpack中默认配置的'@'符号

编辑
2023-04-01
Vite
0

基础

说明

Vite作为前端构建工具的一种,主流构建工具还有如WebPack等

编辑
2023-03-27
TypeScript
0

target

说明

用于指定编译版本

编辑
2023-03-27
TypeScript
0

当前文件改动监视

参数-w 表示watch监视当前文件

tsc fileName -w