Skip to content

Commit

Permalink
Fix path require resolve
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-schranz committed Jul 11, 2022
1 parent c88a03d commit f030f0f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions config/packages/sulu_location.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
sulu_location:
geolocator: 'nominatim'
geolocators:
nominatim:
api_key: 'xlDHBmPhUq7JO2nePRayPN0Q2t5Vg71j'
endpoint: 'http://open.mapquestapi.com/nominatim/v1/search.php'
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ module.exports = (env, argv) => { // eslint-disable-line no-undef
options: {
postcssOptions: styles.getPostCssConfig({
themeImporter: {
themePath: path.resolve(nodeModulesPath, '@ckeditor/ckeditor5-theme-lark'),
themePath: require.resolve(path.resolve(nodeModulesPath, '@ckeditor/ckeditor5-theme-lark')),
},
minify: true,
}),
Expand Down

0 comments on commit f030f0f

Please sign in to comment.