mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-12-27 23:25:22 +01:00
d73add77e7
- new webpack dev server options - babel support for async functions in hooks - new uuid import style - automatically open browser for testing
6 lines
188 B
JavaScript
6 lines
188 B
JavaScript
var config = {};
|
|
config.testNetwork = process.env.TEST_NETWORK || "localhost";
|
|
config.port = 9001;
|
|
config.baseUrl = "http://"+config.testNetwork+":"+config.port;
|
|
|
|
module.exports = config;
|