📄️ Intro
The following document is an installation guide for the development environment of a Harmonix plugin in React and its basic initialization.
📄️ Create a plugin
Initially, you need to have Node.js and npm (Node's package manager) installed. You can download them from the official Node.js website.
📄️ Plugin compilation
The configuration of the vite.config.ts file defines as external the dependencies "react", "react-dom" and "@uxland/primary-shell", indicating that they should not be included in the final package. And the definition of inlineDynamicImports: true is included, which forces to include all dynamic imports in a single file.