- updated sitemaps.

- added eslint ignore in MPatterns loadPatterns action.
This commit is contained in:
Eugene Serb 2022-08-11 14:15:11 +03:00
parent 34e3db0d02
commit 10bffbb044
3 changed files with 7 additions and 5 deletions

View File

@ -2,25 +2,25 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://wavelovers.ru/</loc>
<lastmod>2022-08-10</lastmod>
<lastmod>2022-08-11</lastmod>
<changefreq>weekly</changefreq>
<priority>1.0</priority>
</url>
<url>
<loc>https://wavelovers.ru/faq.html</loc>
<lastmod>2022-08-10</lastmod>
<lastmod>2022-08-11</lastmod>
<changefreq>weekly</changefreq>
<priority>1.0</priority>
</url>
<url>
<loc>https://wavelovers.ru/about.html</loc>
<lastmod>2022-08-10</lastmod>
<lastmod>2022-08-11</lastmod>
<changefreq>weekly</changefreq>
<priority>1.0</priority>
</url>
<url>
<loc>https://wavelovers.ru/donate.html</loc>
<lastmod>2022-08-10</lastmod>
<lastmod>2022-08-11</lastmod>
<changefreq>weekly</changefreq>
<priority>1.0</priority>
</url>

View File

@ -2,7 +2,7 @@
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<sitemap>
<loc>https://wavelovers.ru/sitemap-internal.xml</loc>
<lastmod>2022-08-10</lastmod>
<lastmod>2022-08-11</lastmod>
</sitemap>
</sitemapindex>

View File

@ -28,9 +28,11 @@ const MPatterns: Module<IPatternState, IRootState> = {
const json: TPattern[] = await response.json();
context.commit('setPatterns', json as TPattern[]);
} else {
// eslint-disable-next-line
console.log('Connect to the Internet for download more patterns...');
}
} catch (error) {
// eslint-disable-next-line
console.log(error);
}
},