feat: initial Fractal installation

This commit is contained in:
Oliver Davies 2023-01-01 19:16:35 +00:00
parent 41ccff084d
commit 1962d21da7
12 changed files with 3994 additions and 0 deletions

13
fractal/fractal.config.js Normal file
View file

@ -0,0 +1,13 @@
'use strict';
/* Create a new Fractal instance and export it for use elsewhere if required */
const fractal = module.exports = require('@frctl/fractal').create();
/* Set the title of the project */
fractal.set('project.title', 'oliverdavies.uk');
/* Tell Fractal where the components will live */
fractal.components.set('path', __dirname + '/src/components');
/* Tell Fractal where the documentation pages will live */
fractal.docs.set('path', __dirname + '/src/docs');