@burger-editor/local 4.0.0-alpha.44 → 4.0.0-alpha.46

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -57,6 +57,9 @@ export default {
57
57
  // 編集可能エリアのセレクタ
58
58
  editableArea: '.my-editor',
59
59
 
60
+ // インデックスファイル名(パスが / で終わる場合に使用)
61
+ indexFileName: 'index.html',
62
+
60
63
  // ブロックカタログ
61
64
  catalog: defaultCatalog,
62
65
 
@@ -103,6 +106,7 @@ title: 'New Page'
103
106
  - `stylesheets` (string[]): 読み込むスタイルシートのパス(デフォルト: [])
104
107
  - `classList` (string[]): ブロックに適用するCSSクラス(デフォルト: [])
105
108
  - `editableArea` (string | null): 編集可能エリアのセレクタ(デフォルト: null)
109
+ - `indexFileName` (string): パスが `/` で終わる場合に使用するインデックスファイル名(デフォルト: 'index.html')
106
110
  - `catalog` (BlockCatalog): ブロックカタログ(デフォルト: {})
107
111
  - `newFileContent` (string): 新規ファイル作成時のテンプレート
108
112
  - `googleMapsApiKey` (string | null): Google Maps APIキー(デフォルト: null)
@@ -110,10 +114,10 @@ title: 'New Page'
110
114
  - `sampleFilePath` (string): サンプルファイルのパス
111
115
  - `filesDir` (object): ファイルタイプごとの保存先ディレクトリ
112
116
  - `open` (boolean): 起動時にブラウザを自動で開く(デフォルト: true)
113
- - `enableImportBlock` (boolean): インポートブロックを有効にする(デフォルト: false
117
+ - `enableImportBlock` (boolean): インポートブロックを有効にする(デフォルト: true
114
118
  - `healthCheck` (object): ヘルスチェックの設定
115
- - `enabled` (boolean): ヘルスチェックを有効にする(デフォルト: false
116
- - `interval` (number): チェック間隔(ミリ秒)(デフォルト: 30000
119
+ - `enabled` (boolean): ヘルスチェックを有効にする(デフォルト: true
120
+ - `interval` (number): チェック間隔(ミリ秒)(デフォルト: 10000
117
121
  - `retryCount` (number): リトライ回数(デフォルト: 3)
118
122
 
119
123
  ## カスタムブロックカタログの追加