我想解决两个问题:
实现后者似乎有一些选择,例如资产粉碎机。但是我发现很难找到重写图像和其他资产的好方法。有没有图书馆帮忙?
谢谢!
答案 0 :(得分:-1)
首先,使用express.static:
app.use(express.static("/path_to_assets"));
对“/images/img.png”的调用将解析为“/path_to_assets/images/img.png。”
对于第二个,我使用grunt / requirejs。但你是对的,有很多选择。