{"id":27116704,"url":"https://github.com/simsustech/unocss-preset-quasar","last_synced_at":"2026-01-20T19:32:03.953Z","repository":{"id":285778643,"uuid":"959152561","full_name":"simsustech/unocss-preset-quasar","owner":"simsustech","description":"UnoCSS preset for Quasar Framework","archived":false,"fork":false,"pushed_at":"2025-12-03T08:17:48.000Z","size":2114,"stargazers_count":24,"open_issues_count":1,"forks_count":0,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-12-12T10:05:38.095Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/simsustech.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-04-02T10:57:09.000Z","updated_at":"2025-12-03T08:17:23.000Z","dependencies_parsed_at":"2025-04-22T10:55:27.040Z","dependency_job_id":"ce62ba80-27b9-4a25-9ac3-a09aaab6c0f9","html_url":"https://github.com/simsustech/unocss-preset-quasar","commit_stats":null,"previous_names":["simsustech/unocss-preset-quasar"],"tags_count":19,"template":false,"template_full_name":null,"purl":"pkg:github/simsustech/unocss-preset-quasar","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simsustech%2Funocss-preset-quasar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simsustech%2Funocss-preset-quasar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simsustech%2Funocss-preset-quasar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simsustech%2Funocss-preset-quasar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/simsustech","download_url":"https://codeload.github.com/simsustech/unocss-preset-quasar/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simsustech%2Funocss-preset-quasar/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28610607,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T18:56:40.769Z","status":"ssl_error","status_checked_at":"2026-01-20T18:54:26.653Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-04-07T05:43:26.329Z","updated_at":"2026-01-20T19:32:03.946Z","avatar_url":"https://github.com/simsustech.png","language":"Vue","funding_links":[],"categories":["Awesome Quasar [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)"],"sub_categories":["Tutorials"],"readme":"# unocss-preset-quasar\n\n## Playground\n\nhttps://stackblitz.com/edit/unocss-preset-quasar\n\n## Installation\n\nIn your Quasar project:\n\n```sh\npnpm add unocss unocss-preset-quasar @iconify-json/mdi\n```\n\nModify `quasar.config.js` to include the following (check ./packages/docs/quasar.config.js) for an example:\n\n```js\n...\nimport UnoCSS from 'unocss/vite'\nimport { QuasarPreset } from 'unocss-preset-quasar'\nimport { MaterialDesign3 } from 'unocss-preset-quasar/styles'\n\nconst plugins = [\n  'AddressbarColor',\n  'AppFullscreen',\n  'AppVisibility',\n  'BottomSheet',\n  'Cookies',\n  'Dark',\n  'Dialog',\n  'Loading',\n  'LoadingBar',\n  'LocalStorage',\n  'Meta',\n  'Notify',\n  'Platform',\n  'Screen',\n  'SessionStorage'\n]\n\nexport default defineConfig(async (ctx) =\u003e ({\n    ...\n\n    vitePlugins: [\n      ...\n      {\n        name: 'quasar-strip-sass',\n        enforce: 'pre',\n        transform(code, id) {\n          if (code.includes`import 'quasar/dist/quasar.sass'`) {\n            code = code.replaceAll(\n              \"import 'quasar/dist/quasar.sass'\",\n              \"import 'virtual:uno.css'\"\n            )\n          }\n          return code\n        }\n      }\n    ],\n\n    extendViteConf(viteConf, { isClient }) {\n      ...\n      viteConf.plugins.push(\n        UnoCSS({\n          enforce: 'pre',\n          presets: [\n            QuasarPreset({\n              style: MaterialDesign3,\n              plugins\n            })\n          ]\n        })\n      )\n    }\n  },\n\n\n  framework: {\n    ...\n    plugins\n  },\n\n}))\n```\n\n## Development\n\n```sh\ngit clone https://github.com/simsustech/unocss-preset-quasar.git\ncd unocss-preset-quasar\npnpm i\npnpm run build\ncd packages/dev # or cd packages/docs\npnpm run dev\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimsustech%2Funocss-preset-quasar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsimsustech%2Funocss-preset-quasar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimsustech%2Funocss-preset-quasar/lists"}