Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins/tutor-contrib-paragon/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ All configuration variables are defined via Tutor:
Base path for compiled output. Default: ``env/plugins/paragon/compiled-themes``.

``PARAGON_ENABLED_THEMES``
List of theme folders to compile and serve. Default: ``[]``.
List of theme folders to compile and serve. Default: ``['light']``.

``MFE_HOST_EXTRA_FILES``
Whether to serve compiled themes via Tutor's MFE web server. Default: ``true``.
Expand Down
2 changes: 1 addition & 1 deletion plugins/tutor-contrib-paragon/tutorparagon/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
("PARAGON_COMPILED_THEMES_PATH", "env/plugins/paragon/compiled-themes"),
# List of enabled themes to compile and serve
# Only themes listed here will be processed, even if others exist in sources
("PARAGON_ENABLED_THEMES", []),
("PARAGON_ENABLED_THEMES", ['light']),
# Paragon Builder Docker image
# This image is used to compile themes and should be built with `tutor images build paragon-builder`
("PARAGON_BUILDER_IMAGE", "paragon-builder:latest"),
Expand Down
Loading