tl-rtc-file

This commit is contained in:
tangshimin
2021-08-05 16:26:20 +08:00
parent a28336e328
commit ca98ccca4e
63 changed files with 22762 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
const path = require("path");
function getBasePath(dir){
return path.resolve(process.cwd(),dir);
}
const ROOT_PATH = getBasePath('./../../res');
const JS_PATH = getBasePath('./../../res/js');
const CSS_PATH = getBasePath('./../../res/css');
module.exports = {
ROOT_PATH,
JS_PATH,
CSS_PATH
};