Releases: scottyzen/woonuxt-settings
Releases · scottyzen/woonuxt-settings
Add SEO settings
Add fields to the schema to help with upcoming SEO features.
query getWooNuxtSettings {
woonuxtSettings {
frontEndUrl
wooNuxtSEO {
facebook
twitter
youtube
pinterest
linkedin
instagram
}
}
}```
Setup helpers
1.0.47 Setup helpers
Increase the max query amount
Increase the max query amount if there are more than 100 products.
For now this is the best way of fixing the issue with rendering over 100 products. If you need to reduce the load on the server you can adjust the following in options in the nuxt.config.ts file.
// Depending on your servers capabilities, you may need to adjust the following settings.
// It will affect the build time but also increase the reliability of the build process.
// If you have a server with a lot of memory and CPU, you can remove the following settings.
nitro: {
prerender: {
concurrency: 10, // How many pages to prerender at once
interval: 1000, // How long to wait between prerendering pages
failOnError: false, // This stops the build from failing but the page will not be statically generated
},
},
Add functionality for plugin check
1.0.45 Add functionality for plugin check
Update required plugin versions
1.0.44 Update plugin versions
Update required plugin versions
1.0.43 Fix error when WooCommerce is dissabled or not installed
Fix error when WooCommerce is disabled or not installed
Bug fixes
Bump Version for testing
1.0.40 Bump version
Testing Update
1.0.38 updtaing strategy