make default configuration work with awx development api server

This commit is contained in:
Jake McDermott
2018-09-26 18:06:30 -04:00
parent a73c1dd28e
commit 065813ebc0
3 changed files with 5 additions and 17 deletions

View File

@@ -1,7 +1,7 @@
const webpack = require('webpack');
const TARGET = 'https://localhost:443';
const TARGET_PORT = 443;
const TARGET_PORT = 8043;
const TARGET = `https://localhost:${TARGET_PORT}`;
module.exports = {
entry: './src/index.js',