Skip to content

Commit

Permalink
fix(cdn): point to new govuk-frontend asset path (#199)
Browse files Browse the repository at this point in the history
* fix(cdn): correct `govuk-frontend` path to assets

* chore: remove autoformatting
  • Loading branch information
JoshuaLicense authored Aug 1, 2024
1 parent 9dedf4c commit a80b2bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/cdn/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -218,15 +218,15 @@ var sass = require('sass');
dest: 'public/images/'
}, {
expand: true,
cwd: 'node_modules/govuk-frontend/govuk/assets/images/',
cwd: 'node_modules/govuk-frontend/dist/govuk/assets/images/',
src: ['**/*.{png,jpg,gif,svg,ico}'],
dest: 'public/assets/images/'
}]
},
fonts:{
files: [{
expand: true,
cwd: 'node_modules/govuk-frontend/govuk/assets/fonts/',
cwd: 'node_modules/govuk-frontend/dist/govuk/assets/fonts/',
src: ['**/*.{woff2,woff,eot}'],
dest: 'public/assets/fonts/'
}]
Expand Down

0 comments on commit a80b2bb

Please sign in to comment.