From 3acbf9e84b34ac18c7886ddf649a3426ed6b45d7 Mon Sep 17 00:00:00 2001 From: Victor Fernandez de Alba Date: Wed, 5 Jun 2024 18:41:45 +0200 Subject: [PATCH] Update `volto.config.js` for support `publicPath` --- .../frontend/volto.config.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 sub/project_settings/{{ cookiecutter.__folder_name }}/frontend/volto.config.js diff --git a/sub/project_settings/{{ cookiecutter.__folder_name }}/frontend/volto.config.js b/sub/project_settings/{{ cookiecutter.__folder_name }}/frontend/volto.config.js new file mode 100644 index 0000000..362dd38 --- /dev/null +++ b/sub/project_settings/{{ cookiecutter.__folder_name }}/frontend/volto.config.js @@ -0,0 +1,9 @@ +const addons = ['{{ cookiecutter.__npm_package_name }}']; +const theme = ''; +const publicPath = '../../../public'; + +module.exports = { + addons, + theme, + publicPath +};