@hyperspan/plugin-vue 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.ts +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hyperspan/plugin-vue",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Hyperspan Plugin for Vue.js Client Islands",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
package/src/index.ts CHANGED
@@ -79,6 +79,7 @@ async function compileVueSFC(
79
79
  id,
80
80
  ssr,
81
81
  scoped: descriptor.styles.some((s) => s.scoped),
82
+ ssrCssVars: [],
82
83
  // Pass binding metadata so the template compiler knows which vars are
83
84
  // <script setup> bindings and generates $setup.x refs instead of _ctx.x
84
85
  compilerOptions: bindingMetadata ? { bindingMetadata } : undefined,