Skip to content
Snippets Groups Projects
Commit 7fdedc27 authored by Janis Daniel Dähne's avatar Janis Daniel Dähne
Browse files

- added robots and sitemap files

- moved files that should only be copied to separate folder (just_copy)
parent 8f84b429
No related branches found
No related tags found
No related merge requests found
File moved
User-agent: *
Disallow: /firstLoginExternalLogin.html
Sitemap: https://yapex.informatik.uni-halle.de/sitemap.xml
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://yapex.informatik.uni-halle.de/</loc>
</url>
<url>
<loc>https://yapex.informatik.uni-halle.de/about/about.html</loc>
</url>
</urlset>
...@@ -159,17 +159,25 @@ module.exports = { ...@@ -159,17 +159,25 @@ module.exports = {
}, },
//--- copy also static pages & assets //--- copy also static pages & assets
{ {
from: 'static_pages/static/sha512.js', //needed for firstLoginExternalLogin from: 'static_pages/static/robots.txt',
to: 'static/sha512.js', to: 'robots.txt',
},
{
from: 'static_pages/static/sitemap.xml',
to: 'sitemap.xml',
}, },
{ {
from: 'static_pages/static/favicon.png', from: 'static_pages/just_copy/favicon.png',
to: 'favicon.png', to: 'favicon.png',
}, },
{ {
from: 'static_pages/static/about_icon.png', from: 'static_pages/just_copy/about_icon.png',
to: 'about_icon.png', to: 'about_icon.png',
}, },
{
from: 'static_pages/static/sha512.js', //needed for firstLoginExternalLogin
to: 'static/sha512.js',
},
//hack because react-notifications cannot properly bundled ... the icons are not displayed //hack because react-notifications cannot properly bundled ... the icons are not displayed
//TODO not working because these files are overwritten by the loader!! //TODO not working because these files are overwritten by the loader!!
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment