vitrify 0.17.0 → 0.17.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vitrify",
3
- "version": "0.17.0",
3
+ "version": "0.17.1",
4
4
  "license": "MIT",
5
5
  "author": "Stefan van Herwijnen",
6
6
  "description": "Vite as your Full Stack development tool",
package/src/node/index.ts CHANGED
@@ -341,7 +341,7 @@ export const baseConfig = async ({
341
341
  }
342
342
  })
343
343
  ) {
344
- unoCssContentPipelineInclude.push(/quasar\/src\/.*\.js/)
344
+ // unoCssContentPipelineInclude.push(/quasar\/src\/.*\.js/)
345
345
  }
346
346
 
347
347
  const plugins: ViteUserConfig['plugins'] = [
@@ -482,7 +482,11 @@ export const baseConfig = async ({
482
482
  }),
483
483
  UnoCSS({
484
484
  ...vitrifyConfig.vitrify?.unocss,
485
- content: unoCssContentPipelineInclude
485
+ content: {
486
+ pipeline: {
487
+ include: unoCssContentPipelineInclude
488
+ }
489
+ }
486
490
  })
487
491
  ]
488
492
  if (isPwa) {