是否有一个Grunt插件,我可以在我的文件中写入(例如* .js文件)链接
#if DEBUG
var apiAddress = "http://localhost:8080/api";
#elif RELEASE
var apiAddress = "http://mywebsite.com/api";
#endif
所以我跑的时候
grunt serve
变量应为 http://localhost:8080/api
但如果我跑
grunt build
变量应为 http://mywebsite.com/api , #if DEBUG -Part应删除