diff options
| author | Armand Philippot <git@armandphilippot.com> | 2021-10-30 22:11:00 +0200 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2021-10-30 22:52:23 +0200 |
| commit | 3a3baddad1c801d77dc398d2c6980f3c14f4a47c (patch) | |
| tree | 9e06aef730504470111c010e53a1857f7b01ab83 /config/webpack.common.js | |
| parent | c3045b163e74b42c0a0e71c646740c76d3bb5ba1 (diff) | |
chore: move htdocs to repo root
Diffstat (limited to 'config/webpack.common.js')
| -rw-r--r-- | config/webpack.common.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/webpack.common.js b/config/webpack.common.js index c277ab6..69ecd2f 100644 --- a/config/webpack.common.js +++ b/config/webpack.common.js @@ -32,7 +32,7 @@ module.exports = { generator: { filename: (img) => { const relativePath = img.filename; - const filteredPath = relativePath.replace('htdocs/src/', ''); + const filteredPath = relativePath.replace('src/', ''); return filteredPath; }, }, @@ -43,7 +43,7 @@ module.exports = { generator: { filename: (font) => { const relativePath = font.filename; - const filteredPath = relativePath.replace('htdocs/src/', ''); + const filteredPath = relativePath.replace('src/', ''); return filteredPath; }, }, |
