Css Sass/Compass/Foundation编译错误

Css Sass/Compass/Foundation编译错误,css,sass,zurb-foundation,compass-sass,yeoman,Css,Sass,Zurb Foundation,Compass Sass,Yeoman,我目前正在使用yo并将现有项目迁移到它。。我已经通过BoWar安装了基础,并从我现有的SypStudio.SCSS文件中正确地在APP/Type文件夹中引用了它。我的css以一种非常奇怪的方式编译,就像这样 @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/instabug\/Documents\/instabug\/angular-demo\/instabug2\/bower_components\/foundati

我目前正在使用yo并将现有项目迁移到它。。我已经通过BoWar安装了基础,并从我现有的SypStudio.SCSS文件中正确地在APP/Type文件夹中引用了它。我的css以一种非常奇怪的方式编译,就像这样

@media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/instabug\/Documents\/instabug\/angular-demo\/instabug2\/bower_components\/foundation\/scss\/foundation\/components\/_visibility\.scss}
大约有100个错误读取相同的内容,字体族属性被赋予一个奇怪的\8293281数字,而不是字体名称

这里怎么了

编辑1:

Angular generator不使用config.rb文件,而是使用Gruntfile.js来传递compass配置,而她的代码段与compass有关

compass: {
  options: {
    sassDir: '<%= yeoman.app %>/styles',
    cssDir: '.tmp/styles',
    generatedImagesDir: '.tmp/images/generated',
    imagesDir: '<%= yeoman.app %>/images',
    javascriptsDir: '<%= yeoman.app %>/scripts',
    fontsDir: '<%= yeoman.app %>/styles/fonts',
    importPath: './bower_components',
    httpImagesPath: '/images',
    httpGeneratedImagesPath: '/images/generated',
    httpFontsPath: '/styles/fonts',
    relativeAssets: false,
    assetCacheBuster: false,
    raw: 'Sass::Script::Number.precision = 10\n'
  },
  dist: {
    options: {
      generatedImagesDir: '<%= yeoman.dist %>/images/generated'
    }
  },
  server: {
    options: {
      debugInfo: false
    }
  }
},
指南针:{
选项:{
sassDir:“/styles”,
cssDir:“.tmp/styles”,
generatedImagesDir:'.tmp/images/generated',
imagesDir:“/images”,
javascriptsDir:“/scripts”,
fontsDir:“/styles/fonts”,
进口路径:'./鲍尔_组件',
httpImagesPath:“/images”,
httpGeneratedImagesPath:“/images/generated”,
httpFontsPath:“/styles/fonts”,
相对论:错,
AssetCachBuster:错,
raw:'Sass::Script::Number.precision=10\n'
},
地区:{
选项:{
generatedImagesDir:“/images/generated”
}
},
服务器:{
选项:{
debugInfo:false
}
}
},

你能发布你的config.rb文件吗?我用过yo团队的角度发生器,它应该提供所有现成的东西。。。它没有使用config.rb文件,而是在Gruntfile.js中配置。我将更新这个问题