我一直在尝试遵循运行angular app in production的建议。但是我一直在努力禁用comment和css类指令:
$compileProvider.commentDirectivesEnabled(false);
$compileProvider.cssClassDirectivesEnabled(false);
当我尝试将这些命令添加到配置块时,我收到错误:
$compileProvider.commentDirectivesEnabled is not a function
下面的codepen演示了我的问题,如果你注释掉这两行,那么代码运行没有任何问题: