画像のcssとjsファイルのキャッシュを防ぐために、grunt replaceを使用してファイルの名前を変更し、ファイルに乱数を追加しようとしています。 宛先が定義されていないgrunt replaceのエラー
は、だから私は、次のコードmodule.exports = function replace(grunt) {
var randomVersion = ((new Date()).valueOf().toString()) + (Math.floor((Math.random() * 1000000) + 1).toString());
var replace = {
options: {
variables: {
'randomVersion': randomVersion
},
overwrite: true
},
files: [{
src: './target/dist/index.html',
dest: './target/dist/index.' + randomVersion + '.html'
}]
};
console.log(randomVersion);
grunt.config.set('replace', replace);
};
を実行しているが、私は戻って取得すべては?
は、誰もがこの上の任意の光を当てることができます
定義されていない「宛先でありますありがとう