mirror of
https://github.com/silverstripe/doc.silverstripe.org
synced 2024-10-22 17:05:50 +02:00
15 lines
514 B
JavaScript
15 lines
514 B
JavaScript
require("prismjs/themes/prism-okaidia.css");
|
|
require("./src/theme/assets/scss/theme.scss");
|
|
require('./src/theme/assets/fontawesome/js/all.js');
|
|
require('./src/theme/assets/search/algolia.css');
|
|
const smoothScroll = require('smooth-scroll');
|
|
const Layout = require('./src/components/Layout').default;
|
|
const React = require('react');
|
|
|
|
if (typeof window !== "undefined") {
|
|
smoothScroll('a[href*="#"]')
|
|
}
|
|
|
|
exports.wrapPageElement = ({ element, props }) => {
|
|
return <Layout {...props}>{element}</Layout>
|
|
}; |