From 666975bbc5f2a419766220b563e320755f9d8b16 Mon Sep 17 00:00:00 2001 From: Leigh Johnson Date: Thu, 15 Dec 2016 14:27:19 -0500 Subject: [PATCH] use in-line sourcemaps for javascripts (#4453) --- awx/ui/grunt-tasks/browserSync.js | 1 - awx/ui/webpack.config.js | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/awx/ui/grunt-tasks/browserSync.js b/awx/ui/grunt-tasks/browserSync.js index d68472a778..efb32e31f9 100644 --- a/awx/ui/grunt-tasks/browserSync.js +++ b/awx/ui/grunt-tasks/browserSync.js @@ -12,7 +12,6 @@ module.exports = { ] }, options: { - open: 'external', proxy: { target: `https://${django_host}:${django_port}`, ws: true diff --git a/awx/ui/webpack.config.js b/awx/ui/webpack.config.js index 6c8a7b1ffe..ba5dd5d2bf 100644 --- a/awx/ui/webpack.config.js +++ b/awx/ui/webpack.config.js @@ -100,7 +100,7 @@ var dev = { 'select2': path.resolve() + '/node_modules/select2/dist/js/select2.full.js' } }, - devtool: 'sourcemap', + devtool: 'inline-source-map', watch: true, };