Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thegeeklab/hugo-geekdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/webpack.config.js b/webpack.config.js
index ee7d5e1..8232327 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -82,7 +82,11 @@ var config = {
let manifest = {}
files.forEach(function (element, index) {
+ if (element.name.endsWith("VERSION")) return
if (element.name.endsWith(".svg")) return
+ if (element.name.startsWith("fonts/")) return
+ if (element.name.startsWith("/favicon")) return
+ if (element.name == "css.js") return
Object.assign(manifest, {
[element.name]: { src: element.path }