// The options page is a plain extension page (not a shadow-root overlay), so
// it can use the kit's global CSS and components directly — same look as the
// web panel. Font URLs in kit.css are absolute /assets/... and resolve inside
// the extension bundle (dist/assets/fonts/... is shipped via static-copy).
import "gnexus-ui-kit/dist/css/kit.css";
import "gnexus-ui-kit/dist/assets/fonts/phosphor-icons/src/css/icons.css";
import { createApp } from "vue";
import { GnexusUiVue } from "gnexus-ui-kit/vue";
import Options from "./Options.vue";

createApp(Options).use(GnexusUiVue).mount("#app");