@lexho111/plainblog 0.2.3 → 0.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/Blog.js +1 -1
  2. package/package.json +1 -1
package/Blog.js CHANGED
@@ -147,7 +147,7 @@ export default class Blog {
147
147
  const dbTitle = await this.#databaseModel.getBlogTitle();
148
148
  const dbArticles = await this.#databaseModel.findAll();
149
149
  //console.log(`articles: ${JSON.stringify(dbarticles)}`)
150
- this.reloadScriptsStylesOnGET = true;
150
+ this.reloadScriptsStylesOnGET = false;
151
151
  if(this.reloadScriptsStylesOnGET) console.log("reload scripts and styles on GET-Request");
152
152
  let title = "";
153
153
  if (this.title.length > 0) title = this.title; // use blog title if set
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lexho111/plainblog",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "A tool for creating and serving a minimalist, single-page blog.",
5
5
  "main": "index.js",
6
6
  "type": "module",