diff --git a/src/comp/footer.html b/src/comp/footer.html
index 71d3c93..6131b44 100644
--- a/src/comp/footer.html
+++ b/src/comp/footer.html
@@ -19,7 +19,7 @@
Gameplay
Tokenomic
NFT
- Marketplace
+ Marketplace
- Resources
diff --git a/src/desktop/404.html b/src/desktop/404.html
index 0edd919..44cd32d 100755
--- a/src/desktop/404.html
+++ b/src/desktop/404.html
@@ -48,7 +48,7 @@
Team
Roadmap
-
+
Team
Roadmap
-
+
Team
Roadmap
-
+
Team
Roadmap
-
+
Team
Roadmap
-
+
Team
Roadmap
-
+
Team
Roadmap
-
+
Team
Roadmap
-
+
Team
Roadmap
-
+
Tokenomic
Team
Roadmap
-
+
diff --git a/src/mobile/Roadmap.html b/src/mobile/Roadmap.html
index 09849d9..5e9da65 100755
--- a/src/mobile/Roadmap.html
+++ b/src/mobile/Roadmap.html
@@ -28,7 +28,7 @@
Tokenomic
Team
Roadmap
-
+
diff --git a/src/mobile/gamePlay.html b/src/mobile/gamePlay.html
index 3c16f46..952e32f 100755
--- a/src/mobile/gamePlay.html
+++ b/src/mobile/gamePlay.html
@@ -28,7 +28,7 @@
Tokenomic
Team
Roadmap
-
+
diff --git a/src/mobile/index.html b/src/mobile/index.html
index 43ceb9b..861b8fe 100755
--- a/src/mobile/index.html
+++ b/src/mobile/index.html
@@ -28,7 +28,7 @@
Tokenomic
Team
Roadmap
-
+
@@ -59,13 +59,13 @@
diff --git a/src/mobile/privacy.html b/src/mobile/privacy.html
index 3faf416..46ced0e 100755
--- a/src/mobile/privacy.html
+++ b/src/mobile/privacy.html
@@ -46,7 +46,7 @@
Tokenomic
Team
Roadmap
-
+
diff --git a/src/mobile/team.html b/src/mobile/team.html
index 55f2eda..3d2991b 100755
--- a/src/mobile/team.html
+++ b/src/mobile/team.html
@@ -28,7 +28,7 @@
Tokenomic
Team
Roadmap
-
+
diff --git a/src/mobile/terms.html b/src/mobile/terms.html
index b75c1de..b5448aa 100755
--- a/src/mobile/terms.html
+++ b/src/mobile/terms.html
@@ -45,7 +45,7 @@
Tokenomic
Team
Roadmap
-
+
diff --git a/webpack.desktop.js b/webpack.desktop.js
index 63d17b5..a574241 100644
--- a/webpack.desktop.js
+++ b/webpack.desktop.js
@@ -58,9 +58,16 @@ module.exports = {
test: /\.(woff|ttf|svg|eot)$/,
use: ['url-loader'],
},
+ {
+ test: /\.xml/,
+ type: 'asset/resource',
+ generator: {
+ filename: 'sitemap.xml',
+ },
+ },
{
test: /\.css$/i,
- use: [MiniCssExtractPlugin.loader, { loader: 'css-loader' }],
+ use: [MiniCssExtractPlugin.loader, { loader: 'css-loader'}],
},
{
test: /.html$/,
@@ -91,7 +98,9 @@ module.exports = {
},
],
},
- plugins: [new MiniCssExtractPlugin()].concat(htmlWebpackPlugins),
+ plugins: [new MiniCssExtractPlugin({
+ filename: '[name].[hash:5].css'
+ })].concat(htmlWebpackPlugins),
optimization: {
splitChunks: {
chunks: 'all',
diff --git a/webpack.mobile.js b/webpack.mobile.js
index cabe2eb..3547b58 100644
--- a/webpack.mobile.js
+++ b/webpack.mobile.js
@@ -59,6 +59,13 @@ module.exports = {
test: /\.(woff|ttf|svg|eot)$/,
use: ['url-loader'],
},
+ {
+ test: /\.xml/,
+ type: 'asset/resource',
+ generator: {
+ filename: 'sitemap.xml',
+ },
+ },
{
test: /\.css$/i,
use: [MiniCssExtractPlugin.loader, { loader: 'css-loader' }],
@@ -92,7 +99,9 @@ module.exports = {
},
],
},
- plugins: [new MiniCssExtractPlugin()].concat(htmlWebpackPlugins),
+ plugins: [new MiniCssExtractPlugin({
+ filename: '[name].[hash:6].css'
+ })].concat(htmlWebpackPlugins),
optimization: {
splitChunks: {
chunks: 'all',