feat: initial Fractal installation
This commit is contained in:
parent
41ccff084d
commit
1962d21da7
12 changed files with 3994 additions and 0 deletions
13
fractal/fractal.config.js
Normal file
13
fractal/fractal.config.js
Normal 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');
|
||||
Loading…
Add table
Add a link
Reference in a new issue