2015-08-10 17:50:02 +02:00
|
|
|
module.exports = {
|
2020-08-11 17:52:44 +02:00
|
|
|
dist: {
|
|
|
|
|
files: [
|
|
|
|
|
{
|
|
|
|
|
expand: true, // Enable dynamic expansion.
|
|
|
|
|
cwd: 'dist', // Src matches are relative to this path.
|
|
|
|
|
src: ['*.html'], // Actual pattern(s) to match.
|
|
|
|
|
dest: 'dist/', // Destination path prefix.
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2015-08-10 17:50:02 +02:00
|
|
|
};
|