diff --git a/fis-conf.js b/fis-conf.js index 012db3fb7..361abb1be 100644 --- a/fis-conf.js +++ b/fis-conf.js @@ -688,7 +688,10 @@ if (fis.project.currentMedia() === 'publish-sdk') { postprocessor: convertSCSSIE11 }); const ghPages = fis.media('gh-pages'); - ghPages.set('project.files', ['examples/index.html']); + ghPages.set('project.files', [ + 'examples/index.html', + '/examples/static/*.docx' + ]); ghPages.match('*.scss', { parser: fis.plugin('sass', { @@ -1008,6 +1011,10 @@ if (fis.project.currentMedia() === 'publish-sdk') { useHash: true }); + ghPages.match('*.docx', { + useHash: false + }); + ghPages.match('*.{js,ts,tsx,jsx}', { optimizer: fis.plugin('terser'), useHash: true