ソースを参照

Merge pull request #1902 from FF-Mercurial/patch-1

Docs: Made the RegExps in the webpack config in the "Quick start" framework guide more inclusive (sub-directories).

Thanks https://github.com/FF-Mercurial!
Aleksander Nowodzinski 6 年 前
コミット
03b6456699
1 ファイル変更2 行追加2 行削除
  1. 2 2
      docs/framework/guides/quick-start.md

+ 2 - 2
docs/framework/guides/quick-start.md

@@ -56,14 +56,14 @@ module.exports = {
 	module: {
 		rules: [
 			{
-				// Or /ckeditor5-[^/]+\/theme\/icons\/[^/]+\.svg$/ if you want to limit this loader
+				// Or /ckeditor5-[^/]+\/theme\/icons\/.+\.svg$/ if you want to limit this loader
 				// to CKEditor 5 icons only.
 				test: /\.svg$/,
 
 				use: [ 'raw-loader' ]
 			},
 			{
-				// Or /ckeditor5-[^/]+\/theme\/[^/]+\.css$/ if you want to limit this loader
+				// Or /ckeditor5-[^/]+\/theme\/.+\.css$/ if you want to limit this loader
 				// to CKEditor 5 theme only.
 				test: /\.css$/,