Maybe there’s another way I’m not aware of?
Thank you!
Hello,
I want to be able to customize the SW script generated. The WebPack plugin allows for it, but Quasar (v0.15) seems to not be sending that information to the plugin.
Quasar code:
new SWPrecacheWebpackPlugin({
cacheId: cfg.pwa.cacheId,
filename: cfg.pwa.filename,
staticFileGlobs: [`${cfg.build.distDir}/**/*.{${cfg.pwa.cacheExt}}`],
minify: cfg.build.minify,
stripPrefix: cfg.build.distDir.replace(/\\/g, '/') + '/'
}),
Could we also add the importScripts
option, so we can import our own SW code?
What I want to achieve is caching fetch requests and serve them from cache, falling back to a network request (or opposite, it depends).
Is there a way to customize the SW script?
Thanks!
Hello,
I’m trying to add a slider with this setup:
Layout -> Right Menu -> Collapsible -> Slider
This is a screenshot:
But if moving the slider to the right side, the menu closes too.
Is there a way to stop that event from happening?
Thanks!
Hello,
I have a toolbar with a tab inside, aligned bottom and justified, but it doesn’t use the full width of the screen.
I’m sending a screenshot of what I see, and the code snippet:
<q-toolbar slot="footer">
<q-tabs align="justify">
<q-tab slot="title" icon="location on" to="/account/store" label="Stores" />
<q-tab slot="title" icon="card giftcard" to="/account/store/producs" label="Products" />
<q-tab slot="title" icon="shopping cart" to="/account/store/shopping" label="Cart" />
</q-tabs>
</q-toolbar>
Is it possible to align the tabs correctly?
Thanks!