From ee0757e3d8f592e4af0b40dccb8931e84fb77ec8 Mon Sep 17 00:00:00 2001 From: prosdev Date: Tue, 23 Dec 2025 19:46:53 -0800 Subject: [PATCH] feat: rebrand to Auth HI! with updated manifest and build config - Update manifest name to 'Auth HI!' with new tagline - Update package.json description with Auth HI! branding - Add postcss.config.cjs for Tailwind CSS processing - Fix vite.config.ts for correct asset path resolution in extension - Add *.zip to .gitignore for build artifacts --- .gitignore | 1 + package.json | 2 +- postcss.config.cjs | 6 ++++++ src/manifest.json | 4 ++-- vite.config.ts | 7 ------- 5 files changed, 10 insertions(+), 10 deletions(-) create mode 100644 postcss.config.cjs diff --git a/.gitignore b/.gitignore index 02884b7..26ee7e3 100644 --- a/.gitignore +++ b/.gitignore @@ -36,3 +36,4 @@ web-ext-artifacts/ # Notes (discussion, research, planning) notes/ +*.zip diff --git a/package.json b/package.json index 28476cb..ee75775 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "auth-header-injector", "version": "0.1.0", - "description": "Chrome extension for injecting auth headers into requests. Built with SDK Kit.", + "description": "Auth HI! - Chrome extension for injecting auth headers. Built with SDK Kit.", "type": "module", "scripts": { "dev": "vite", diff --git a/postcss.config.cjs b/postcss.config.cjs new file mode 100644 index 0000000..12a703d --- /dev/null +++ b/postcss.config.cjs @@ -0,0 +1,6 @@ +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +}; diff --git a/src/manifest.json b/src/manifest.json index 444551d..72966f9 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,8 +1,8 @@ { "manifest_version": 3, - "name": "Auth Header Injector", + "name": "Auth HI!", "version": "0.1.0", - "description": "Inject authentication headers into HTTP requests based on URL patterns", + "description": "Say hi to hassle-free auth headers. Inject authentication headers into requests based on URL patterns.", "icons": { "16": "icon-16.png", "48": "icon-48.png", diff --git a/vite.config.ts b/vite.config.ts index cd40810..8167c5d 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -19,12 +19,5 @@ export default defineConfig({ build: { outDir: 'dist', emptyOutDir: true, - rollupOptions: { - output: { - // Use relative paths for assets - assetFileNames: '[name].[ext]', - }, - }, }, - base: './', // Use relative paths });