chore: cleanup
This commit is contained in:
parent
09e3662a88
commit
b5435762a1
12 changed files with 21 additions and 22 deletions
|
@ -6,7 +6,6 @@
|
|||
"dev": "astro dev",
|
||||
"start": "astro dev",
|
||||
"build": "astro build",
|
||||
"preview": "astro preview",
|
||||
"astro": "astro",
|
||||
"update:deps": "npm upgrade && ncu && npx @astrojs/upgrade",
|
||||
"build:worker": "node scripts/worker-build.mjs $WORKER_NAME",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { fetchBlogroll } from "@utils/data/blogroll.js";
|
||||
import { fetchGlobals } from "@utils/data/global/index.js";
|
||||
import { fetchGlobals } from '@utils/data/globals.js';
|
||||
|
||||
export async function GET() {
|
||||
try {
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
import { generateJsonFeed } from "@utils/generateJsonFeed.js";
|
||||
import { fetchGlobals } from "@utils/data/globals.js";
|
||||
import { fetchActivity } from "@utils/data/activity.js";
|
||||
import fs from "fs/promises";
|
||||
import path from "path";
|
||||
|
||||
export const prerender = true;
|
||||
|
||||
export async function getStaticPaths() {
|
||||
const globals = await fetchGlobals();
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
import { generateRssFeed } from "@utils/generateRssFeed";
|
||||
import { fetchGlobals } from "@utils/data/globals.js";
|
||||
import { fetchActivity } from "@utils/data/activity.js";
|
||||
import fs from "fs/promises";
|
||||
import path from "path";
|
||||
|
||||
export const prerender = true;
|
||||
|
||||
export async function getStaticPaths() {
|
||||
const globals = await fetchGlobals();
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
import { generateJsonFeed } from "@utils/generateJsonFeed.js";
|
||||
import { fetchGlobals } from "@utils/data/globals.js";
|
||||
import { fetchBooks } from "@utils/data/books.js";
|
||||
import fs from "fs/promises";
|
||||
import path from "path";
|
||||
|
||||
export const prerender = true;
|
||||
|
||||
export async function getStaticPaths() {
|
||||
const globals = await fetchGlobals();
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
import { generateRssFeed } from "@utils/generateRssFeed";
|
||||
import { fetchGlobals } from "@utils/data/globals.js";
|
||||
import { fetchBooks } from "@utils/data/books.js";
|
||||
import fs from "fs/promises";
|
||||
import path from "path";
|
||||
|
||||
export const prerender = true;
|
||||
|
||||
export async function getStaticPaths() {
|
||||
const globals = await fetchGlobals();
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
import { generateJsonFeed } from "@utils/generateJsonFeed.js";
|
||||
import { fetchGlobals } from "@utils/data/globals.js";
|
||||
import { fetchLinks } from "@utils/data/links.js";
|
||||
import fs from "fs/promises";
|
||||
import path from "path";
|
||||
|
||||
export const prerender = true;
|
||||
|
||||
export async function getStaticPaths() {
|
||||
const globals = await fetchGlobals();
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
import { generateRssFeed } from "@utils/generateRssFeed";
|
||||
import { fetchGlobals } from "@utils/data/globals.js";
|
||||
import { fetchLinks } from "@utils/data/links";
|
||||
import fs from "fs/promises";
|
||||
import path from "path";
|
||||
|
||||
export const prerender = true;
|
||||
|
||||
export async function getStaticPaths() {
|
||||
const globals = await fetchGlobals();
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
import { generateJsonFeed } from '@utils/generateJsonFeed.js';
|
||||
import { fetchGlobals } from '@utils/data/globals.js';
|
||||
import { fetchMovies } from '@utils/data/movies';
|
||||
import fs from 'fs/promises';
|
||||
import path from 'path';
|
||||
|
||||
export const prerender = true;
|
||||
|
||||
export async function getStaticPaths() {
|
||||
const globals = await fetchGlobals();
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
import { generateRssFeed } from "@utils/generateRssFeed";
|
||||
import { fetchGlobals } from "@utils/data/globals.js";
|
||||
import { fetchMovies } from "@utils/data/movies.js";
|
||||
import fs from "fs/promises";
|
||||
import path from "path";
|
||||
|
||||
export const prerender = true;
|
||||
|
||||
export async function getStaticPaths() {
|
||||
const globals = await fetchGlobals();
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
import { generateJsonFeed } from "@utils/generateJsonFeed.js";
|
||||
import { fetchGlobals } from "@utils/data/globals.js";
|
||||
import { fetchAllPosts } from "@utils/data/posts.js";
|
||||
import fs from "fs/promises";
|
||||
import path from "path";
|
||||
|
||||
export const prerender = true;
|
||||
|
||||
export async function getStaticPaths() {
|
||||
const globals = await fetchGlobals();
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
import { generateRssFeed } from "@utils/generateRssFeed";
|
||||
import { fetchGlobals } from "@utils/data/globals.js";
|
||||
import { fetchAllPosts } from "@utils/data/posts.js";
|
||||
import fs from "fs/promises";
|
||||
import path from "path";
|
||||
|
||||
export const prerender = true;
|
||||
|
||||
export async function getStaticPaths() {
|
||||
const globals = await fetchGlobals();
|
||||
|
|
Reference in a new issue