Author: Rasso Hilber [mail@rassohilber.com]
Committer: GitHub [noreply@github.com] Mon, 08 May 2023 21:26:46 +0000
Hash: 06bb8821717b56f39c5d7b4aef27f18df7143dbb
Timestamp: Mon, 08 May 2023 21:26:46 +0000 (1 year ago)

+3 -3 +/-1 browse
Fix documentation for postcss JIT plugin in CSS mode (#369)
Fix documentation for postcss JIT plugin in CSS mode (#369)

1diff --git a/docsite/index.html b/docsite/index.html
2index 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 ]