Skip to content

Commit

Permalink
Fix path to ckeditor theme in webpack config (#6694)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-schranz committed Jul 11, 2022
1 parent e33d357 commit c37a1e1
Showing 1 changed file with 1 addition and 1 deletion.
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: require.resolve( '@ckeditor/ckeditor5-theme-lark' ),
themePath: require.resolve(path.resolve(nodeModulesPath, '@ckeditor/ckeditor5-theme-lark')),
},
minify: true,
}),
Expand Down

0 comments on commit c37a1e1

Please sign in to comment.