Code Cleanup™

This commit is contained in:
2024-02-11 11:16:23 +01:00
parent 4b27eb76fe
commit 9fd8ddb9bd
62 changed files with 663 additions and 519 deletions

View File

@ -17,14 +17,14 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import { l as proxyL } from "astro-i18n";
import {l as proxyL} from "astro-i18n";
const locales = ["de"];
export const l = (route: string) => {
export const l = (route: string) => {
const transPath = proxyL(route);
if(import.meta.env.DEV) {
if (import.meta.env.DEV) {
return transPath;
}