Skip to content

Commit

Permalink
Fix img folder source for copy (#255)
Browse files Browse the repository at this point in the history
* fix: 🔧 fix img folder source for copy
  • Loading branch information
nicolaskempf57 committed May 17, 2023
1 parent 60f947c commit 0b79e87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -2,7 +2,7 @@

## Current (in progress)

- Nothing yet
- Fix `img` folder not copied [#255](https://github.com/etalab/udata-front/pull/255)

## 3.2.3 (2023-05-16)

Expand Down
2 changes: 1 addition & 1 deletion vite.config.js
Expand Up @@ -45,7 +45,7 @@ export default defineConfig(async () => {
}),
copy({
targets: [
{ src: 'theme/img', dest: `udata_front/theme/${theme}/static/` },
{ src: `udata_front/theme/${theme}/assets/img`, dest: `udata_front/theme/${theme}/static/` },
{ src: "node_modules/systemjs/dist/s.min.js", dest: `udata_front/theme/${theme}/static/js/` },
],
hook: 'writeBundle'
Expand Down

0 comments on commit 0b79e87

Please sign in to comment.