diff --git a/STARTER/config.yml b/STARTER/config.yml
index b14223e..9c322e2 100644
--- a/STARTER/config.yml
+++ b/STARTER/config.yml
@@ -1,16 +1,5 @@
-# Your project's server will run on localhost:xxxx at this port
-PORT: 8000
-# Example: mysite.local.com:8082
-PROXY: 'STARTER URI:PORT'
-
-# UnCSS will use these settings
-UNCSS_OPTIONS:
-  html:
-    - "dist/**/*.html"
-  timeout: 1000
-  ignore:
-    - .foundation-mq
-    - !!js/regexp /\.is-\w+/
+# The URL of your server (e.g. http://localhost:49871 or foobar.lndo.site) for browersync
+BROWSERSYNC: 'https://foobar.lndo.site'
 
 # Gulp will reference these paths when it copies files
 PATHS:
diff --git a/STARTER/gulpfile.babel.js b/STARTER/gulpfile.babel.js
index 781f94a..749cd83 100644
--- a/STARTER/gulpfile.babel.js
+++ b/STARTER/gulpfile.babel.js
@@ -7,9 +7,7 @@ import plugins       from 'gulp-load-plugins';
 import yargs         from 'yargs';
 import browser       from 'browser-sync';
 import gulp          from 'gulp';
-import panini        from 'panini';
 import rimraf        from 'rimraf';
-import sherpa        from 'style-sherpa';
 import yaml          from 'js-yaml';
 import fs            from 'fs';
 import webpackStream from 'webpack-stream';
@@ -20,7 +18,6 @@ import imagemin      from 'gulp-imagemin';
 
 const sass = require('gulp-sass');
 const postcss = require('gulp-postcss');
-const uncss = require('postcss-uncss');
 const sassLint = require('gulp-sass-lint');
 
 // Load all Gulp plugins into one variable.
@@ -36,9 +33,7 @@ function loadConfig() {
   const ymlFile = fs.readFileSync('config.yml', 'utf8');
   return yaml.load(ymlFile, {schema});
 }
-const { PORT, PROXY, UNCSS_OPTIONS, PATHS } = loadConfig();
-
-console.log(UNCSS_OPTIONS);
+const { BROWSERSYNC, PATHS } = loadConfig();
 
 // Build the compiled js and css by running all of the below tasks.
 // Sass must be run later so UnCSS can search for used classes in the others assets.
@@ -64,8 +59,6 @@ function sassBuild() {
   const postCssPlugins = [
     // Autoprefixer
     autoprefixer(),
-    // UnCSS - Uncomment to remove unused styles in production
-    // PRODUCTION && uncss(UNCSS_OPTIONS),
   ].filter(Boolean);
 
   return gulp.src(PATHS.scss)
@@ -147,7 +140,7 @@ function images() {
 function server(done) {
   browser.init({
     proxy: {
-      target: PROXY
+      target: BROWSERSYNC
     },
   }, done);
 }
@@ -158,10 +151,8 @@ function reload(done) {
   done();
 }
 
-
-// Watch for changes to templates, scss, and JavaScript
+// Watch for changes to SCSS and JavaScript
 function watch() {
-  gulp.watch('templates/**/*.html.twig').on('all', gulp.series(browser.reload));
   gulp.watch(PATHS.componentScss).on('all', sassBuild);
   gulp.watch('js/*.js').on('all', gulp.series(javascript, browser.reload));
   gulp.watch('images-source').on('all', gulp.series(images, browser.reload));
diff --git a/STARTER/package.json b/STARTER/package.json
index 6ab6366..7244367 100644
--- a/STARTER/package.json
+++ b/STARTER/package.json
@@ -38,11 +38,8 @@
     "js-yaml": "^4.1.0",
     "js-yaml-js-types": "^1.0.0",
     "node-sass": "^6.0.1",
-    "panini": "latest",
     "postcss": "^8.3.11",
-    "postcss-uncss": "^0.17.0",
     "rimraf": "^3.0.2",
-    "style-sherpa": "^1.0.2",
     "uncss": "^0.17.3",
     "vinyl-named": "^1.1.0",
     "webpack": "^5.52.1",
