mirror of
https://github.com/thelounge/thelounge
synced 2024-11-10 06:34:21 +00:00
Move favicon.ico to the root folder
This commit is contained in:
parent
b0571c5a36
commit
50fbf93d64
3 changed files with 13 additions and 1 deletions
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
|
@ -20,7 +20,7 @@
|
|||
<title>The Lounge</title>
|
||||
|
||||
<!-- Browser tab icon -->
|
||||
<link id="favicon" rel="icon" sizes="16x16 32x32 64x64" href="img/favicon-normal.ico" data-other="img/favicon-alerted.ico" type="image/x-icon">
|
||||
<link id="favicon" rel="icon" sizes="16x16 32x32 64x64" href="favicon.ico" data-other="img/favicon-alerted.ico" type="image/x-icon">
|
||||
|
||||
<!-- Safari pinned tab icon -->
|
||||
<link rel="mask-icon" href="img/icon-black-transparent-bg.svg" color="#415363">
|
||||
|
|
|
@ -12,6 +12,13 @@ describe("public folder", function() {
|
|||
expect(fs.existsSync(path.join(publicFolder, "fonts", "fa-solid-900.woff2"))).to.be.true;
|
||||
});
|
||||
|
||||
it("files in root folder are copied", function() {
|
||||
expect(fs.existsSync(path.join(publicFolder, "favicon.ico"))).to.be.true;
|
||||
expect(fs.existsSync(path.join(publicFolder, "robots.txt"))).to.be.true;
|
||||
expect(fs.existsSync(path.join(publicFolder, "service-worker.js"))).to.be.true;
|
||||
expect(fs.existsSync(path.join(publicFolder, "thelounge.webmanifest"))).to.be.true;
|
||||
});
|
||||
|
||||
it("index HTML file is not copied", function() {
|
||||
expect(fs.existsSync(path.join(publicFolder, "index.html"))).to.be.false;
|
||||
expect(fs.existsSync(path.join(publicFolder, "index.html.tpl"))).to.be.false;
|
||||
|
@ -22,6 +29,11 @@ describe("public folder", function() {
|
|||
expect(fs.existsSync(path.join(publicFolder, "js", "bundle.vendor.js"))).to.be.true;
|
||||
});
|
||||
|
||||
it("style files are built", function() {
|
||||
expect(fs.existsSync(path.join(publicFolder, "css", "style.css"))).to.be.true;
|
||||
expect(fs.existsSync(path.join(publicFolder, "css", "style.css.map"))).to.be.true;
|
||||
});
|
||||
|
||||
it("javascript map is created", function() {
|
||||
expect(fs.existsSync(path.join(publicFolder, "js", "bundle.js.map"))).to.be.true;
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue