Fix path
This commit is contained in:
parent
8a482d212f
commit
d8a892c38b
|
@ -24,7 +24,7 @@ function scriptsTask(cb) {
|
|||
function imageminTask(cb) {
|
||||
return src("./assets/images/*")
|
||||
.pipe(imagemin())
|
||||
.pipe(dest("./dist/assets/images"));
|
||||
.pipe(dest("./dist/images"));
|
||||
cb();
|
||||
}
|
||||
|
||||
|
|
|
@ -39,9 +39,9 @@ module.exports = {
|
|||
},
|
||||
extend: {
|
||||
backgroundImage: theme => ({
|
||||
'link-arrow-black': "url('../assets/images/arrow/arrow-black.svg')",
|
||||
'link-arrow-blue': "url('../assets/images/arrow/arrow-blue.svg')",
|
||||
'link-arrow-green': "url('../assets/images/arrow/arrow-green.svg')",
|
||||
'link-arrow-black': "url('../images/arrow/arrow-black.svg')",
|
||||
'link-arrow-blue': "url('../images/arrow/arrow-blue.svg')",
|
||||
'link-arrow-green': "url('../images/arrow/arrow-green.svg')",
|
||||
}),
|
||||
fontFamily: {
|
||||
'sans': 'Helvetica'
|
||||
|
|
Loading…
Reference in New Issue