1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2025-12-17 09:37:02 +00:00

Fix non-root basepaths, closes #273

This commit is contained in:
James Hillyerd
2022-05-22 21:34:44 -07:00
parent f39395bd7f
commit 9aaca449f8
4 changed files with 7 additions and 4 deletions

View File

@@ -4,7 +4,7 @@
"license": "MIT", "license": "MIT",
"private": true, "private": true,
"scripts": { "scripts": {
"build": "parcel build", "build": "parcel build --public-url ./",
"start": "parcel --hmr-port 1235 src/index-dev.html", "start": "parcel --hmr-port 1235 src/index-dev.html",
"clean": "rm -rf .parcel-cache dist elm-stuff" "clean": "rm -rf .parcel-cache dist elm-stuff"
}, },

View File

@@ -10,6 +10,9 @@
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate"> <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="Pragma" content="no-cache"> <meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0"> <meta http-equiv="Expires" content="0">
<link rel="stylesheet" href="./main.css">
<link rel="stylesheet" href="./navbar.css">
<link rel="stylesheet" href="./mailbox.css">
<link rel="icon" type="image/png" href="./favicon.png"> <link rel="icon" type="image/png" href="./favicon.png">
<link rel="manifest" href="./manifest.json"> <link rel="manifest" href="./manifest.json">
<title>Inbucket</title> <title>Inbucket</title>

View File

@@ -9,6 +9,9 @@
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate"> <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="Pragma" content="no-cache"> <meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0"> <meta http-equiv="Expires" content="0">
<link rel="stylesheet" href="./main.css">
<link rel="stylesheet" href="./navbar.css">
<link rel="stylesheet" href="./mailbox.css">
<link rel="icon" type="image/png" href="./favicon.png"> <link rel="icon" type="image/png" href="./favicon.png">
<link rel="manifest" href="./manifest.json"> <link rel="manifest" href="./manifest.json">
<title>Inbucket</title> <title>Inbucket</title>

View File

@@ -1,6 +1,3 @@
import './main.css'
import './mailbox.css'
import './navbar.css'
import '@fortawesome/fontawesome-free/css/all.css' import '@fortawesome/fontawesome-free/css/all.css'
import '@webcomponents/webcomponentsjs/webcomponents-bundle' import '@webcomponents/webcomponentsjs/webcomponents-bundle'
import 'opensans-npm-webfont' import 'opensans-npm-webfont'