Skip to content

Instantly share code, notes, and snippets.

@anfibiacreativa
Created July 8, 2020 20:55
Show Gist options
  • Select an option

  • Save anfibiacreativa/e738d7f93c2804910f713c42694fbd0d to your computer and use it in GitHub Desktop.

Select an option

Save anfibiacreativa/e738d7f93c2804910f713c42694fbd0d to your computer and use it in GitHub Desktop.
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