在 scss 文件中使用 @extent 时出现 Grunt autoprefixer 错误

Grunt autoprefixer error when using @extent in scss file

错误:

Running "autoprefixer:dist" (autoprefixer) task
File .tmp/styles/documentation.css created.
Warning: Can't parse CSS: Missing property value at line 66:21 in .tmp/styles/main.css Use --force to continue.

第 66 行指向以下代码:

来源:

span {
  @extent .md-body-1;
}

p {
  @extent .md-body-1;
}

我无法在 scss 中扩展标签?还是自动前缀问题?

您需要使用 @extend 而不是 @extent