From d76dd14b1b6c347b3b79e32867fb0cf130e2fdbf Mon Sep 17 00:00:00 2001 From: Manuk Date: Thu, 14 May 2026 01:04:18 +0400 Subject: [PATCH] fix(docs): repoint GitHub Pages build to relaticle/ink The deployed site at https://relaticle.github.io/ink/ was serving HTML with asset paths hardcoded to /filament-blog/* (the old repo name), causing every CSS and JS file to 404. - deploy-docs.yml: NUXT_APP_BASE_URL /filament-blog/ -> /ink/ - deploy-docs.yml: NUXT_SITE_URL manukminasyan -> relaticle - nuxt.config.ts: site.name 'Filament Blog' -> 'Ink' - docs/content/*, app.config.ts: remaining 'Filament Blog' brand strings This commit was originally part of PR #10 but the squash-merge happened before the second commit landed. Hotfixing on top. --- .github/workflows/deploy-docs.yml | 4 ++-- docs/app.config.ts | 4 ++-- docs/content/1.getting-started/1.installation.md | 2 +- docs/content/2.essentials/4.configuration.md | 2 +- docs/content/4.community/1.contributing.md | 2 +- docs/content/4.community/2.license.md | 2 +- docs/content/index.md | 2 +- docs/nuxt.config.ts | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 33f8276..a50f3b0 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -58,8 +58,8 @@ jobs: working-directory: ./docs run: npm run generate env: - NUXT_APP_BASE_URL: /filament-blog/ - NUXT_SITE_URL: https://manukminasyan.github.io + NUXT_APP_BASE_URL: /ink/ + NUXT_SITE_URL: https://relaticle.github.io - name: Deploy to gh-pages run: | diff --git a/docs/app.config.ts b/docs/app.config.ts index 30f9ec5..ec1720c 100644 --- a/docs/app.config.ts +++ b/docs/app.config.ts @@ -1,10 +1,10 @@ export default defineAppConfig({ docus: { - title: 'Filament Blog', + title: 'Ink', description: 'Headless blog package for Filament with SEO, MCP tools, and publishable components.', }, seo: { - title: 'Filament Blog', + title: 'Ink', description: 'Headless blog package for Filament with SEO, MCP tools, and publishable components.', }, github: { diff --git a/docs/content/1.getting-started/1.installation.md b/docs/content/1.getting-started/1.installation.md index 217644e..feec52d 100644 --- a/docs/content/1.getting-started/1.installation.md +++ b/docs/content/1.getting-started/1.installation.md @@ -1,6 +1,6 @@ --- title: Installation -description: Install Filament Blog in your Laravel application. +description: Install Ink in your Laravel application. navigation: icon: i-lucide-download --- diff --git a/docs/content/2.essentials/4.configuration.md b/docs/content/2.essentials/4.configuration.md index d86deea..9bb531b 100644 --- a/docs/content/2.essentials/4.configuration.md +++ b/docs/content/2.essentials/4.configuration.md @@ -1,6 +1,6 @@ --- title: Configuration -description: Full configuration reference for Filament Blog. +description: Full configuration reference for Ink. navigation: icon: i-lucide-settings --- diff --git a/docs/content/4.community/1.contributing.md b/docs/content/4.community/1.contributing.md index da1b1f8..3e30aa8 100644 --- a/docs/content/4.community/1.contributing.md +++ b/docs/content/4.community/1.contributing.md @@ -1,6 +1,6 @@ --- title: Contributing -description: How to contribute to Filament Blog. +description: How to contribute to Ink. navigation: icon: i-lucide-git-pull-request --- diff --git a/docs/content/4.community/2.license.md b/docs/content/4.community/2.license.md index 8da89f0..6f0b75c 100644 --- a/docs/content/4.community/2.license.md +++ b/docs/content/4.community/2.license.md @@ -5,4 +5,4 @@ navigation: icon: i-lucide-scale --- -Filament Blog is open-sourced software licensed under the [MIT License](https://opensource.org/licenses/MIT). +Ink is open-sourced software licensed under the [MIT License](https://opensource.org/licenses/MIT). diff --git a/docs/content/index.md b/docs/content/index.md index c9650de..5b68732 100644 --- a/docs/content/index.md +++ b/docs/content/index.md @@ -1,6 +1,6 @@ --- seo: - title: Filament Blog — Headless blog package for Filament + title: Ink — Headless blog package for Filament description: Drop a blog into any Filament 5 app. Ships admin, SEO, MCP tools, and Blade components — bring your own routes or opt into the built-in ones with a config flag. --- diff --git a/docs/nuxt.config.ts b/docs/nuxt.config.ts index 88e1fd2..9a9fcf3 100644 --- a/docs/nuxt.config.ts +++ b/docs/nuxt.config.ts @@ -5,7 +5,7 @@ export default defineNuxtConfig({ modules: ['@nuxt/image'], devtools: { enabled: true }, site: { - name: 'Filament Blog', + name: 'Ink', }, appConfig: { docus: {