We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8b82b0 commit f998893Copy full SHA for f998893
1 file changed
plugins/rss/README.md
@@ -24,15 +24,17 @@ npm install @notiz/scully-plugin-rss --save-dev
24
25
## Usage
26
27
-Require the plugin in the Scully config file:
+Import the plugin in the Scully config file `scully.app-name.config.ts`:
28
29
-```js
30
-require('@notiz/scully-plugin-rss');
+```ts
+import { ScullyConfig } from '@scullyio/scully';
31
+import '@notiz/scully-plugin-rss';
32
-exports.config = {
33
+export const config: ScullyConfig = {
34
projectRoot: './src/app',
- defaultPostRenderers: ['rss'],
35
- routes: {},
+ routes: {
36
+ ...
37
+ },
38
};
39
```
40
0 commit comments