Created
July 8, 2020 20:55
-
-
Save anfibiacreativa/e738d7f93c2804910f713c42694fbd0d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { ScullyConfig } from '@scullyio/scully'; | |
| const { DisableAngular } = require('scully-plugin-disable-angular'); | |
| const postRenderers = [DisableAngular]; | |
| export const config: ScullyConfig = { | |
| projectRoot: './src', | |
| projectName: 'doc-site', | |
| outDir: './dist/static', | |
| routes: { | |
| '/docs/:slug': { | |
| type: 'contentFolder', | |
| slug: { | |
| folder: './docs' | |
| }, | |
| postRenderers: postRenderers, | |
| }, | |
| } | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment