我想要一个文件.它的路径在某些配置中:
//config.js module.exports = "/home/css/style.css"; //entry.js var path = require(./config.js); require("style!css!" + path); Uncaught Error: Cannot find module "."
如何要求包含可以获取根/目录的路径的文件?
/