We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi! I found out that in manifest dir option is missing auto, source: https://docs.pwabuilder.com/#/builder/manifest?id=dir-string
auto
/** * @default `ltr` */ dir: 'ltr' | 'rtl';
Auto will detect it based on text content
The text was updated successfully, but these errors were encountered:
You can omit that entry in the PWA plugin options, the default value is not set here https://github.com/vite-pwa/vite-plugin-pwa/blob/main/src/options.ts#L105-L113 : manifest entry is declared as manifest: Partial<ManifestOptions> | false, we'll need to update the jsdocs.
manifest
manifest: Partial<ManifestOptions> | false
Anyway, we need to add auto there and change the default value.
Sorry, something went wrong.
No branches or pull requests
Hi! I found out that in manifest dir option is missing
auto
, source: https://docs.pwabuilder.com/#/builder/manifest?id=dir-stringAuto will detect it based on text content
The text was updated successfully, but these errors were encountered: