import { version } from '../version.js'; /** * Represents an HTML template string used for generating the main structure of an SPA (Single Page Application). * * @see {@link https://vite.dev/guide/env-and-mode.html#html-constant-replacement} * * The template includes placeholders for dynamic values such as: * - `%FUSION_SPA_TITLE%`: The title of the SPA. * - `%MODE%`: The mode of the application (e.g., development, production). * - `%FUSION_SPA_BOOTSTRAP%`: The path to the bootstrap script for initializing the SPA. * * Additionally, it includes: * - A meta tag for the plugin version, dynamically populated using the `version` variable. * - A link to the Equinor font stylesheet hosted on a CDN. * * @constant * @type {string} */ export const html = ` %FUSION_SPA_TITLE% `; export default html;