Created
March 5, 2016 21:14
-
-
Save allmarkedup/67a71e49b6f6cc083466 to your computer and use it in GitHub Desktop.
Configuring fractal as part of a bootstrap process in another file
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
require('./setup.js'); |
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
const fractal = require('@frctl/fractal'); | |
const myOtherThing = require('mot'); | |
fractal.set('components.path', 'src/components'); | |
fractal.set('docs.path', 'src/docs'); | |
fractal.set('plugins.web.static.path', 'public'); | |
myOtherThing.setup('foo', 'bar'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment