Skip to content
This repository was archived by the owner on May 15, 2026. It is now read-only.
This repository was archived by the owner on May 15, 2026. It is now read-only.

Update plugin options interface #4

@samuelmaddock

Description

The current plugin options are inflexible and will possibly lead to breaking changes in the future:

new ThemePlugin({
    themes: {
        light: 'light.css',
        dark: 'dark.css'
    }
})

Using an array for themes would be more flexible:

new ThemePlugin({
    themes: [
        {name: 'light', file: 'light.css'}
        {name: 'dark', file: 'dark.css'}
    ]
})

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions