6 lines
148 B
JavaScript
6 lines
148 B
JavaScript
import { fileURLToPath } from "node:url";
|
|
|
|
export function sharedSkillsRootPath() {
|
|
return fileURLToPath(new URL("./skills/", import.meta.url));
|
|
}
|