mirror of
https://github.com/mapbox/mapbox-gl-draw.git
synced 2025-12-08 18:01:54 +00:00
* Switch to ESM * Switch to NPM instead of Yarn * Switch to the native Node test runner * Drop the `buble` compiler * Drop `xtend`, use `Object.assign` instead * Drop `lodash.isequal`, use `fast-deep-equal` instead
18 lines
260 B
JavaScript
18 lines
260 B
JavaScript
export default {
|
|
root: 'debug/',
|
|
base: '/debug/',
|
|
envPrefix: 'MAPBOX_',
|
|
server: {
|
|
host: '0.0.0.0',
|
|
port: 9967,
|
|
strictPort: true,
|
|
},
|
|
optimizeDeps: {
|
|
esbuildOptions: {
|
|
define: {
|
|
global: 'globalThis'
|
|
}
|
|
}
|
|
}
|
|
};
|