11 lines
169 B
TypeScript
11 lines
169 B
TypeScript
|
import { defineConfig } from 'vite';
|
||
|
import earth from 'vite-plugin-earth';
|
||
|
|
||
|
export default defineConfig({
|
||
|
plugins: [
|
||
|
earth({
|
||
|
useMars3D: true
|
||
|
})
|
||
|
]
|
||
|
});
|