VS Error: Octal escape sequences are only supported in ECMAScript 3 compatibility mode

随声附和 提交于 2019-12-10 18:24:21

问题


I have twitter bootstrap setup to build in a new project, but am getting the following error from VS2010.

Fatal error, cannot continue: Octal escape sequences are only supported in ECMAScript 3 compatibility mode.

Which seems to be related to the following CSS/Less entry in bootstrap (type.less)...

blockquote small:before {
  content: '\2014 \00A0';
}

Can anyone help?


回答1:


Just wanted to say that I had this error too, and the problem for me ended up being with Chirpy. I tried to make a merged css file with it, but i was using .min files and i didn't use the chripy Minify="false" parameter in my File node. Added that parameter and that fixed it right up



来源:https://stackoverflow.com/questions/10923987/vs-error-octal-escape-sequences-are-only-supported-in-ecmascript-3-compatibilit

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!