import FlagsmithFlags from "./FlagsmithFlags"; function plugin(ctx, inject) { const FEATURES = JSON.parse('<%= options.data %>'); const flagsmithFlags = FlagsmithFlags.create({ features: FEATURES, }); inject("flagsmith", flagsmithFlags); ctx.app.flagsmith = flagsmithFlags; } export { plugin }; export default plugin;