mirror of
https://github.com/ProjectSegfault/website.git
synced 2024-11-01 00:13:03 +05:30
Run formatter
This commit is contained in:
parent
ebe120deca
commit
4871b83850
@ -11,3 +11,6 @@ node_modules
|
||||
pnpm-lock.yaml
|
||||
package-lock.json
|
||||
yarn.lock
|
||||
|
||||
# Ignore NixOS flake lock
|
||||
flake.lock
|
||||
|
@ -1,4 +1,4 @@
|
||||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
|
@ -5,7 +5,13 @@ import type { Provider } from "@auth/core/providers";
|
||||
import type { Profile } from "@auth/core/types";
|
||||
import { redirect, type Handle } from "@sveltejs/kit";
|
||||
import { sequence } from "@sveltejs/kit/hooks";
|
||||
import { announcements, pubnixUsers, blogPosts, blogTags, blogAuthors } from "./stores";
|
||||
import {
|
||||
announcements,
|
||||
pubnixUsers,
|
||||
blogPosts,
|
||||
blogTags,
|
||||
blogAuthors
|
||||
} from "./stores";
|
||||
import axios from "axios";
|
||||
import { Agent } from "https";
|
||||
|
||||
@ -74,10 +80,10 @@ export const fetchGhost = async (action: string, additional?: string) => {
|
||||
|
||||
const updateMap = async () => {
|
||||
try {
|
||||
const res = await axios(
|
||||
env.KUMA_URL,
|
||||
{ httpsAgent: agent, timeout: 10000 }
|
||||
);
|
||||
const res = await axios(env.KUMA_URL, {
|
||||
httpsAgent: agent,
|
||||
timeout: 10000
|
||||
});
|
||||
|
||||
if (res.status === 200) {
|
||||
announcements.set(res.data);
|
||||
@ -89,10 +95,10 @@ const updateMap = async () => {
|
||||
}
|
||||
|
||||
try {
|
||||
const res = await axios(
|
||||
"https://publapi.p.projectsegfau.lt/users",
|
||||
{ httpsAgent: agent, timeout: 10000 }
|
||||
);
|
||||
const res = await axios("https://publapi.p.projectsegfau.lt/users", {
|
||||
httpsAgent: agent,
|
||||
timeout: 10000
|
||||
});
|
||||
|
||||
if (res.status === 200) {
|
||||
pubnixUsers.set(res.data);
|
||||
|
@ -10,5 +10,5 @@ export const load = (async () => {
|
||||
return {
|
||||
users: get(pubnixUsers),
|
||||
...meta
|
||||
}
|
||||
};
|
||||
}) satisfies PageServerLoad;
|
||||
|
@ -10,5 +10,5 @@ export const load = (async () => {
|
||||
return {
|
||||
users: get(pubnixUsers),
|
||||
...meta
|
||||
}
|
||||
};
|
||||
}) satisfies PageServerLoad;
|
||||
|
@ -22,7 +22,12 @@ export default defineConfig({
|
||||
|
||||
transformers: [transformerVariantGroup(), transformerDirectives()],
|
||||
|
||||
safelist: ["i-ic:outline-dark-mode", "i-ic:outline-light-mode", "i-ic:baseline-toggle-on", "i-ic:baseline-toggle-off"],
|
||||
safelist: [
|
||||
"i-ic:outline-dark-mode",
|
||||
"i-ic:outline-light-mode",
|
||||
"i-ic:baseline-toggle-on",
|
||||
"i-ic:baseline-toggle-off"
|
||||
],
|
||||
|
||||
theme: {
|
||||
fontFamily: {
|
||||
|
Loading…
Reference in New Issue
Block a user