Мой код:
const Bundler = require('parcel-bundler');
const path = require('path');
const options = {
contentHash: true,
minify: true
};
(async function() {
const bundler = new Bundler(path.join(__dirname, '../sass/main.scss'), options);
await bundler.bundle();
})();
Вывод только main.css
и main.js
в каталоге ./dist
, но в имени файла нет ha sh. Почему contentHash: true
не работает?
Спасибо.