@@ -173,7 +173,7 @@ module.exports = {
173
173
Type: ` Object|Function `
174
174
Default: ` undefined `
175
175
176
- Allows to set [ ` PostCSS options ` ] ( http ://api. postcss.org/global.html#processOptions ) and plugins.
176
+ Allows to set [ ` PostCSS options ` ] ( https ://postcss.org/api/#processoptions ) and plugins.
177
177
178
178
All ` PostCSS ` options are supported.
179
179
There is the special ` config ` option for config files. How it works and how it can be configured is described below.
@@ -381,7 +381,7 @@ Using `Object` notation:
381
381
382
382
``` js
383
383
module .exports = {
384
- // You can specify any options from http ://api. postcss.org/global.html#processOptions here
384
+ // You can specify any options from https ://postcss.org/api/#processoptions here
385
385
// parser: 'sugarss',
386
386
plugins: [
387
387
// Plugins for PostCSS
@@ -405,7 +405,7 @@ module.exports = (api) => {
405
405
406
406
if (/ \. sss$ / .test (api .file )) {
407
407
return {
408
- // You can specify any options from http ://api. postcss.org/global.html#processOptions here
408
+ // You can specify any options from https ://postcss.org/api/#processoptions here
409
409
parser: " sugarss" ,
410
410
plugins: [
411
411
// Plugins for PostCSS
@@ -416,7 +416,7 @@ module.exports = (api) => {
416
416
}
417
417
418
418
return {
419
- // You can specify any options from http ://api. postcss.org/global.html#processOptions here
419
+ // You can specify any options from https ://postcss.org/api/#processoptions here
420
420
plugins: [
421
421
// Plugins for PostCSS
422
422
[" postcss-short" , { prefix: " x" }],
@@ -430,7 +430,7 @@ module.exports = (api) => {
430
430
431
431
``` js
432
432
module .exports = {
433
- // You can specify any options from http ://api. postcss.org/global.html#processOptions here
433
+ // You can specify any options from https ://postcss.org/api/#processoptions here
434
434
// parser: 'sugarss',
435
435
plugins: {
436
436
// Plugins for PostCSS
0 commit comments