diff options
author | ArthurHoaro <arthur@hoa.ro> | 2020-11-05 17:54:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-05 17:54:14 +0100 |
commit | 48df9f45b8c4b2995c1e04146071628668531b37 (patch) | |
tree | 213b5e009fac34782038b486439c278de0aee131 | |
parent | a5a4fb17930d82827d833ddf54b972581ec140ff (diff) | |
parent | c61d8a85b7a8cb424e347625923d3293d334d3b0 (diff) | |
download | Shaarli-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.js | 3 |
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 | ], |