Skip to content

Commit 73e8bc9

Browse files
committed
add sitemap
1 parent 1da5aa1 commit 73e8bc9

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

sitemap.xml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
2+
3+
<url>
4+
<loc>https://kangas.au/</loc>
5+
<lastmod>2023-12-10T19:51:00+00:00</lastmod>
6+
<priority>1.00</priority>
7+
</url>
8+
<url>
9+
<loc>https://kangas.au/about</loc>
10+
<lastmod>2023-12-10T19:51:00+00:00</lastmod>
11+
<priority>0.80</priority>
12+
</url>
13+
<url>
14+
<loc>https://kangas.au/services</loc>
15+
<lastmod>2023-12-10T19:51:00+00:00</lastmod>
16+
<priority>0.80</priority>
17+
</url>
18+
<url>
19+
<loc>https://kangas.au/gallery</loc>
20+
<lastmod>2023-12-10T19:51:00+00:00</lastmod>
21+
<priority>0.80</priority>
22+
</url>
23+
<url>
24+
<loc>https://kangas.au/contact</loc>
25+
<lastmod>2023-12-10T19:51:00+00:00</lastmod>
26+
<priority>0.80</priority>
27+
</url>
28+
<url>
29+
<loc>https://kangas.au/privacy</loc>
30+
<lastmod>2023-12-10T19:51:00+00:00</lastmod>
31+
<priority>0.80</priority>
32+
</url>
33+
</urlset>

webpack.config.js

+2
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,8 @@ const config = {
107107
patterns: [
108108
// Copy all files within src/images over to the dist folder
109109
{ from: 'src/images', to: 'images' },
110+
// Copy sitemap.xml to the root of the dist folder
111+
{ from: 'sitemap.xml', to: './' },
110112
],
111113
}),
112114
],

0 commit comments

Comments
 (0)