Skip to content

A devDependencies used to automatically configure CesiumJS for development and build with Vite.

License

Notifications You must be signed in to change notification settings

s3xysteak/vite-plugin-cesium-build

Repository files navigation

🎉vite-plugin-cesium-build

English | 简体中文

It externalizes Cesium.js and automatically copies the four major libraries and core files of CesiumJS during the build process.

It also support @cesium/engine !

  • 👍 DX Zero impact on development
  • TypeScript Type support.
  • 🚀 Super fast! In my laptop, the sample project only takes 300ms to complete the build because the Cesium library is not involved in the core build.

Alt text

📝 Usage

If you are "not interested in document just wanna make it work asap", please refer to examples.

Install this plugin

pnpm add -D vite-plugin-cesium-build

Import it in vite.config.js

import { defineConfig } from 'vite'
import cesium from 'vite-plugin-cesium-build'
// import cesium from 'vite-plugin-cesium-build/engine' // when using @cesium/engine

export default defineConfig({
  plugins: [
    // ...
    cesium()
  ]
})

You have completed the entire configuration for CesiumJS! Now you can continue development and build as usual! By default, This plugin will automatically add the code to your index.html:

// Customize variable 'to' in options
Object.defineProperty(globalThis, 'CESIUM_BASE_URL', {
  value: `/${to}/`
})

To prevent it, see customCesiumBaseUrl in Options.

If using Cesium version 1.97 or older, you can set css option to true:

export default defineConfig({
  plugins: [
    cesium({ css: true })
  ]
})

That will automatically add Cesium's css to your index.html:

<link rel="stylesheet" href="./cesium-package/Widgets/widgets.css">

🔧 Options

In addition, the plugin provides some configuration options:

export default defineConfig({
  plugins: [
    cesium({
      /**
       * Specifies the location of the Cesium package folder
       * Which means the relevant resources of CesiumJS will be obtained from this folder
       */
      from: 'node_modules/cesium/Build/Cesium',

      /**
       * Specifies the location of the built resources
       * Which means the built resources will be placed under /dist/cesium-package/
       */
      to: 'cesium-package',

      /**
       * If `true`, you need to manually set the CESIUM_BASE_URL.
       */
      customCesiumBaseUrl: false,
      /**
       * If `true`, Cesium's css will be added automatically.
       */
      css: boolean
    })
  ]
})

Fully customizable

It also provide some internal methods to support fully customizable. In the rare case that it is necessary, please check the corresponding source code.

import { defineConfig } from 'vite'
import { copyCesium, importCesium, setBaseUrl } from 'vite-plugin-cesium-build/core'

export default defineConfig({
  plugins: [
    [
      copyCesium(
        // ...
      ),
      importCesium(
        // ...
      ),
      setBaseUrl(
        // ...
      )
    ]
  ]
})

Others

If you are a Vue user, maybe try cesium-use !