File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " vite-plugin-solid " : patch
3
+ ---
4
+
5
+ add new configuration from dom-expressions
Original file line number Diff line number Diff line change @@ -80,13 +80,29 @@ export interface Options {
80
80
*/
81
81
solid ?: {
82
82
/**
83
- * Removed unnecessary closing tags from template strings. More info here:
83
+ * Remove unnecessary closing tags from template strings. More info here:
84
84
* https://github.com/solidjs/solid/blob/main/CHANGELOG.md#smaller-templates
85
85
*
86
86
* @default false
87
87
*/
88
88
omitNestedClosingTags ?: boolean ;
89
89
90
+ /**
91
+ * Remove the last closing tag from template strings. Enabled by default even when `omitNestedClosingTags` is disabled.
92
+ * Can be disabled for compatibility for some browser-like environments.
93
+ *
94
+ * @default true
95
+ */
96
+ omitLastClosingTag ?: boolean ;
97
+
98
+ /**
99
+ * Remove unnecessary quotes from template strings.
100
+ * Can be disabled for compatibility for some browser-like environments.
101
+ *
102
+ * @default true
103
+ */
104
+ omitQuotes ?: boolean ;
105
+
90
106
/**
91
107
* The name of the runtime module to import the methods from.
92
108
*
You can’t perform that action at this time.
0 commit comments