@@ -173,7 +173,7 @@ module.exports = {
173173Type: ` Object|Function `
174174Default: ` undefined `
175175
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.
177177
178178All ` PostCSS ` options are supported.
179179There 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:
381381
382382``` js
383383module .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
385385 // parser: 'sugarss',
386386 plugins: [
387387 // Plugins for PostCSS
@@ -405,7 +405,7 @@ module.exports = (api) => {
405405
406406 if (/ \. sss$ / .test (api .file )) {
407407 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
409409 parser: " sugarss" ,
410410 plugins: [
411411 // Plugins for PostCSS
@@ -416,7 +416,7 @@ module.exports = (api) => {
416416 }
417417
418418 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
420420 plugins: [
421421 // Plugins for PostCSS
422422 [" postcss-short" , { prefix: " x" }],
@@ -430,7 +430,7 @@ module.exports = (api) => {
430430
431431``` js
432432module .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
434434 // parser: 'sugarss',
435435 plugins: {
436436 // Plugins for PostCSS
0 commit comments