Browse Source

Fix ESLint warning in tools/webpack.config.js

Konstantin Tarkus 9 năm trước cách đây
mục cha
commit
9b19bcaaec
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      tools/webpack.config.js

+ 1 - 1
tools/webpack.config.js

@@ -119,7 +119,7 @@ const config = {
       // Transfer @import rule by inlining content, e.g. @import 'normalize.css'
       // https://github.com/postcss/postcss-import
       require('postcss-import')({ addDependencyTo: bundler }),
-      // W3C custom properties for variables, e.g. :root { --color: red; } div { background: var(--color); }
+      // W3C variables, e.g. :root { --color: red; } div { background: var(--color); }
       // https://github.com/postcss/postcss-custom-properties
       require('postcss-custom-properties')(),
       // W3C calc() function, e.g. div { height: calc(100px - 2em); }