Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
vf-core-mirror
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
embl.org
vf-core-mirror
Commits
96aa6702
Commit
96aa6702
authored
6 years ago
by
Ken Hawkins
Browse files
Options
Downloads
Patches
Plain Diff
Allow more params to be passed
parent
221a43a1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#16401
passed with stage
in 1 minute and 46 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fractal.js
+4
-2
4 additions, 2 deletions
fractal.js
with
4 additions
and
2 deletions
fractal.js
+
4
−
2
View file @
96aa6702
...
...
@@ -17,7 +17,8 @@ module.exports = {
fractal
.
components
.
set
(
'
path
'
,
vfComponentPath
);
/* Tell Fractal where the documentation pages will live */
fractal
.
docs
.
set
(
'
path
'
,
__dirname
+
'
/docs
'
);
var
vfDocsPath
=
global
.
vfDocsPath
||
__dirname
+
'
/docs
'
;
fractal
.
docs
.
set
(
'
path
'
,
vfDocsPath
);
const
nunj
=
require
(
'
@frctl/nunjucks
'
)({
env
:
{
...
...
@@ -60,7 +61,8 @@ module.exports = {
fractal
.
components
.
set
(
'
default.preview
'
,
`@preview`
);
/* build destination */
fractal
.
web
.
set
(
'
builder.dest
'
,
__dirname
+
'
/build
'
);
var
vfBuilderPath
=
global
.
vfBuilderPath
||
__dirname
+
'
/build
'
;
fractal
.
web
.
set
(
'
builder.dest
'
,
vfBuilderPath
);
/* configure web */
fractal
.
web
.
set
(
'
static.path
'
,
__dirname
+
'
/public
'
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment