Removed unused file path

This commit is contained in:
alexjanousekGSA
2024-07-08 09:58:25 -06:00
parent e189ac3d1a
commit e7c49f8bbb
2 changed files with 5 additions and 3 deletions

View File

@@ -27,7 +27,6 @@ plugins.uglify = require('gulp-uglify');
const paths = {
src: 'app/assets/',
dist: 'app/static/',
templates: 'app/templates/',
npm: 'node_modules/',
toolkit: 'node_modules/govuk_frontend_toolkit/',
govuk_frontend: 'node_modules/govuk-frontend/'
@@ -150,8 +149,6 @@ const images = () => {
paths.govuk_frontend + 'assets/images/**/*',
paths.src + 'images/**/*',
paths.src + 'img/**/*',
paths.template + 'assets/images/**/*'
])
.pipe(dest(paths.dist + 'images/'))
};