Quasar CLI with Vite - @quasar/app-vite v3
Warning! Beta Stage
The Quasar SSG Mode is currently in the “beta” stage. Based on the community feedback, the API may change in the future, so check the release notes each time you upgrade “@quasar/app-vite”.
The generated /src-ssg/package.json keeps build-time renderer dependencies separate from your application dependencies. Add a package here when it is imported directly by /src-ssg/ssg-renderer.
{
"name": "quasar-ssg-app",
"version": "1.0.0",
"description": "Quasar SSG folder",
"type": "module",
"private": true,
"dependencies": {}
}WARNING
Packages imported by application code under /src still belong in the root package.json. Install only renderer-specific packages under /src-ssg.
For example, to discover Markdown files from the renderer with tinyglobby:
# run in /src-ssg
pnpm add tinyglobby