From 57fcc32296943e83b31527056d726593ce1223d2 Mon Sep 17 00:00:00 2001 From: Cliff Johnson Date: Mon, 9 Dec 2024 17:10:17 -0600 Subject: [PATCH 1/3] add public path back, pt1 --- webpack.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index ac7c4442..ed1d1a25 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -30,7 +30,8 @@ module.exports = { output: { path: path.join(__dirname, '/dist/'), - filename: '[name].js' + filename: '[name].js', + publicPath: '/' }, plugins: [ From 2eb958b9edc775912d38f0cc591b299b08d10753 Mon Sep 17 00:00:00 2001 From: Cliff Johnson Date: Mon, 9 Dec 2024 17:15:09 -0600 Subject: [PATCH 2/3] add public path back, pt2 --- webpack.production.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webpack.production.config.js b/webpack.production.config.js index ec3096e1..7e7cc27d 100644 --- a/webpack.production.config.js +++ b/webpack.production.config.js @@ -34,7 +34,8 @@ module.exports = { output: { path: path.join(__dirname, '/dist/'), filename: '[name]-[chunkhash].js', - chunkFilename: '[name]-[chunkhash].js' + chunkFilename: '[name]-[chunkhash].js', + publicPath: '/' }, plugins: [ From 4a62257d9e186368d682b1f30877c9b0b97d6491 Mon Sep 17 00:00:00 2001 From: Cliff Johnson Date: Tue, 10 Dec 2024 13:30:39 -0600 Subject: [PATCH 3/3] Update bckgnd img url for landing pg --- src/styles/components/landing.styl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/components/landing.styl b/src/styles/components/landing.styl index 3a0e9cd2..3273e8ed 100644 --- a/src/styles/components/landing.styl +++ b/src/styles/components/landing.styl @@ -1,6 +1,6 @@ .landing align-items: center - background: url('../images/builder-landing.jpg') center center no-repeat + background: url('https://lab.zooniverse.org/src/images/builder-landing.jpg') center center no-repeat background-size: cover color: white display: flex