Skip to content

Commit 040df43

Browse files
committed
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
1 parent fb22d2d commit 040df43

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,4 @@ web-ext-artifacts/
3636
# Notes (discussion, research, planning)
3737
notes/
3838

39+
*.zip

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "auth-header-injector",
33
"version": "0.1.0",
4-
"description": "Chrome extension for injecting auth headers into requests. Built with SDK Kit.",
4+
"description": "Auth HI! - Chrome extension for injecting auth headers. Built with SDK Kit.",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

postcss.config.cjs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
module.exports = {
2+
plugins: {
3+
tailwindcss: {},
4+
autoprefixer: {},
5+
},
6+
};

src/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"manifest_version": 3,
3-
"name": "Auth Header Injector",
3+
"name": "Auth HI!",
44
"version": "0.1.0",
5-
"description": "Inject authentication headers into HTTP requests based on URL patterns",
5+
"description": "Say hi to hassle-free auth headers. Inject authentication headers into requests based on URL patterns.",
66
"icons": {
77
"16": "icon-16.png",
88
"48": "icon-48.png",

vite.config.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,5 @@ export default defineConfig({
1919
build: {
2020
outDir: 'dist',
2121
emptyOutDir: true,
22-
rollupOptions: {
23-
output: {
24-
// Use relative paths for assets
25-
assetFileNames: '[name].[ext]',
26-
},
27-
},
2822
},
29-
base: './', // Use relative paths
3023
});

0 commit comments

Comments
 (0)