Skip to content

Commit 9eaf21e

Browse files
authored
docs: update link to postcss options (#503)
1 parent 078ca9d commit 9eaf21e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ module.exports = {
173173
Type: `Object|Function`
174174
Default: `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

178178
All `PostCSS` options are supported.
179179
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:
381381

382382
```js
383383
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
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
432432
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
434434
// parser: 'sugarss',
435435
plugins: {
436436
// Plugins for PostCSS

0 commit comments

Comments
 (0)