You know what to do... npm install and npm run dev or npm run build then npm run start - Yarn probably works too...
https://nextjs-cesium.vercel.app <- Live demo
https://github.com/hyundotio/next-ts-pagerouter-cesium-example <- Click here for Page router example
Literally just pointed Vercel to this repo to build and run automatically.
In your .env file, add a field called NEXT_PUBLIC_CESIUM_TOKEN and assign your Cesium Access Token. This is optional if you plan on using other services.
Cesium requires static assets (Workers, Widgets, etc.) to be served from a public folder.
In previous versions (using Next.js 14), we used CopyWebpackPlugin. However, Next.js 16 uses Turbopack by default, which does not support Webpack plugins.
The Solution:
We now use cpx (installed via cpx2) to copy files from node_modules to public/cesium before the server starts. This is handled automatically in the package.json scripts:
"dev": "npm run copy-cesium && next dev""build": "npm run copy-cesium && next build"
Consequently, next.config.js is now completely clean of custom Webpack config!
It is just cleaner to have Cesium related components as client only components. So in this case, both the Cesium component and the dynamic ssr off wrappers are tagged with 'use client'
I won't go into every method that I've tried but every method I've tried has resulted in browser errors, Next.js errors, and/or Vercel (500 status filesystem) errors. Using the cpx script method, wrapping it in a dynamic component, and then finally importing the Cesium files via import inside a useEffect yielded 100% success.
Note: Since we removed the Webpack DefinePlugin, the CESIUM_BASE_URL is now manually set on the window object inside CesiumComponent.tsx.
On NextJS 13.4+ React Strict-Mode is enabled by default. In CesiumComponent.tsx there is some extra code in initializeCesiumJs function and the cleanUpPrimitives function itself to clean up any possible things (in this specific case, primitives) that may be added as a duplicate when the function is called twice. Optionally, you can disable React strcit mode and remove this code.
With all the work above, it is very important to utilize the dynamically called Cesium and not import individual functions like you would normally. Also it is very important to type Cesium specific things with import type { xyz } from 'cesium' not import { xyz } from 'cesium'
Thank you https://github.com/willwill96 for helping me get started and please give this repo a star if it was helpful!