Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix img folder source for copy #255

Merged
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -21,6 +21,7 @@
- Add Matomo event tracking [#246](https://github.com/etalab/udata-front/pull/246)
- New scope for Captchetat piste OAuth [#250](https://github.com/etalab/udata-front/pull/250)
- Use `datetime.utcnow` to make sure to handle utc datetimes [#251](https://github.com/etalab/udata-front/pull/251)
- Fix `img` folder not copied [#255](https://github.com/etalab/udata-front/pull/255)
nicolaskempf57 marked this conversation as resolved.
Show resolved Hide resolved

## 3.2.2 (2023-04-18)

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