vite-plugin-earth/demo-cesium/vite.config.ts

7 lines
146 B
TypeScript
Raw Normal View History

2023-03-28 10:02:22 +08:00
import { defineConfig } from 'vite';
2023-03-28 11:51:03 +08:00
import earth from 'vite-plugin-earth';
2023-03-28 10:02:22 +08:00
export default defineConfig({
2023-03-28 15:11:58 +08:00
plugins: [earth({ useCDN: {} })]
2023-03-28 10:02:22 +08:00
});