在配置项中添加path的方法

工程配置项中添加path的方法

1、使用resolve

1
2
3
4
5
6
7
8
import { resolve } from "path"

function _resolve(dir: string) {
return path.resolve(__dirname, dir)
}

// 使用方法
'@': _resolve('src'),

2、获取根目录

1
const root = process.cwd(); // 当前执行node命令时文件夹的地址(工作目录)

3、fileURLToPath, URL,在vite目录下

1
console.log(fileURLToPath(new URL('./src', import.meta.url)));