aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2020-11-05 17:54:14 +0100
committerGitHub <noreply@github.com>2020-11-05 17:54:14 +0100
commit48df9f45b8c4b2995c1e04146071628668531b37 (patch)
tree213b5e009fac34782038b486439c278de0aee131
parenta5a4fb17930d82827d833ddf54b972581ec140ff (diff)
parentc61d8a85b7a8cb424e347625923d3293d334d3b0 (diff)
downloadShaarli-48df9f45b8c4b2995c1e04146071628668531b37.tar.gz
Shaarli-48df9f45b8c4b2995c1e04146071628668531b37.tar.zst
Shaarli-48df9f45b8c4b2995c1e04146071628668531b37.zip
Merge pull request #1626 from ArthurHoaro/fix/vintage-webpack
Webpack: fix vintage theme images include
-rw-r--r--webpack.config.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/webpack.config.js b/webpack.config.js
index a4aa633e..2c316d32 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -142,7 +142,8 @@ module.exports = [
142 loader: 'file-loader', 142 loader: 'file-loader',
143 options: { 143 options: {
144 name: '../img/[name].[ext]', 144 name: '../img/[name].[ext]',
145 publicPath: '', 145 // do not add a publicPath here because it's already handled by CSS's publicPath
146 publicPath: '../vintage',
146 } 147 }
147 } 148 }
148 ], 149 ],