mirror of
https://github.com/maputnik/editor.git
synced 2025-12-27 08:30:02 +00:00
- new webpack dev server options - babel support for async functions in hooks - new uuid import style - automatically open browser for testing
7 lines
188 B
JavaScript
7 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;
|