We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c98b2d2 commit f3f1f73Copy full SHA for f3f1f73
src/server.ts
@@ -586,6 +586,9 @@ async function createProjectService(
586
if (Array.isArray(exports.plugins)) {
587
userPlugins = exports.plugins
588
exports.plugins = exports.plugins.map((plugin) => {
589
+ if (plugin.__isOptionsFunction) {
590
+ plugin = plugin()
591
+ }
592
if (typeof plugin === 'function') {
593
let newPlugin = (...args) => {
594
if (!args[0].matchUtilities) {
0 commit comments