2 Commits

Author SHA1 Message Date
9e31b239af 1.1.1 2019-08-02 14:10:44 -07:00
cb2b7827f1 fix: only pre-render the main page
avoid flash of 'no data' when loading favorites
2019-08-02 13:54:05 -07:00
5 changed files with 7 additions and 4 deletions

View File

@@ -1,5 +1,8 @@
### Changelog
#### [v1.1.1](https://git.w33ble.com/w33ble/strain-tools/compare/v1.1.0...v1.1.1) (2 August 2019)
- fix: only pre-render the main page [`cb2b782`](https://git.w33ble.com/w33ble/strain-tools/commit/cb2b7827f11bb9db029d7d9fd7fbe9a6a27930f2)
#### [v1.1.0](https://git.w33ble.com/w33ble/strain-tools/compare/v1.0.2...v1.1.0) (18 September 2018)
- feat: basic routing and fav nav [`3b39345`](https://git.w33ble.com/w33ble/strain-tools/commit/3b39345fa66ac4748a400e9e80e032ec9ae9697b)
- feat: show favorite strain cards [`85efbd8`](https://git.w33ble.com/w33ble/strain-tools/commit/85efbd84d1704c55a3eefae7fa2d36e7fd7f3cc2)

View File

@@ -1,6 +1,6 @@
{
"name": "strain-tools",
"version": "1.1.0",
"version": "1.1.1",
"description": "strain tools",
"main": "index",
"module": "index.mjs",

View File

@@ -1,6 +1,6 @@
{
"name": "scraper",
"version": "1.1.0",
"version": "1.1.1",
"private": true,
"description": "scrapes strain info, stores for later reference",
"main": "index",

View File

@@ -1,6 +1,6 @@
{
"name": "search-site",
"version": "1.1.0",
"version": "1.1.1",
"private": true,
"main": "index",
"module": "index.mjs",

View File

@@ -6,7 +6,7 @@ module.exports = {
outDir: 'dist',
plugins: [
require('@poi/plugin-vue-static')({
routes: ['/', '/favorites'],
routes: ['/'],
}),
],
};