I am using the Kirby 3.2.5 Starter Kit since a few days and found https://github.com/getkirby/editor which I really like to use for my project, but as soon as I enable the editor in ./site/blueprints/pages/note.yml it shows the below error message.
The plugin enabled with the blueprint ./site/blueprints/pages/note.yml as follows
# Define the form layout with two columns
# Columns are optional but help structure the form layout
columns:
- width: 2/3
# This columns only has a single field
fields:
text:
label: WYSIWYG
type: editor
Anybody here who can point me to the right direction?
# Each page blueprint must have a title, the title may be different from the file name
# This default blueprint is used to display a page in the Panel whenever a custom page blueprint is missing.
title: Simple Page
# Each page can have an icon that is shown in page listings when no preview image is available.
icon: π
# Page presets are a quick way to set up a standard page layout
# More about page presets:
# - https://getkirby.com/docs/guide/blueprints/presets and
# - https://getkirby.com/docs/reference/panel/presets/page
preset: page
# Custom descriptions of page statuses depending on use case
# More about page statuses: https://getkirby.com/docs/reference/panel/blueprints/page#statuses
status:
draft: true
unlisted:
label: Hidden Page
text: The page is not listed in the main menu
listed:
label: Menu Page
text: The page is listed in the main menu
# Limit subpage display to certain templates in a page preset
pages:
template: default
# A page preset can have a freely defined set of fields
# List of all available field types: https://getkirby.com/docs/reference/panel/fields
fields:
text:
label: Blocks
type: editor
Hmmmm, I think weβre getting closer. index.js canβt be loaded from route /media/plugins/index.js. The problem might be the local dev browser(php -S localhost:8001) . Now, I took a docker container and put the hole stuff in it. That works fine.