Commit
+3 -3 +/-1 browse
1 | diff --git a/docsite/index.html b/docsite/index.html |
2 | index 1d04645..b97faa6 100644 |
3 | --- a/docsite/index.html |
4 | +++ b/docsite/index.html |
5 | @@ -1044,13 +1044,13 @@ |
6 | <pre class="language-js"><code> |
7 | // postcss.config.js |
8 | const postcssJitProps = require('postcss-jit-props'); |
9 | - const OpenProps = require('open-props'); |
10 | - |
11 | + const path = require('path'); |
12 | + |
13 | module.exports = { |
14 | plugins: [ |
15 | postcssJitProps({ |
16 | files: [ |
17 | - require('open-props/open-props.min.css'), |
18 | + path.resolve(__dirname, 'node_modules/open-props/open-props.min.css'), |
19 | ] |
20 | }), |
21 | ] |