Skip to content

Commit 66f2117

Browse files
committed
Updates / Cleanups / Bug fixes
* Updated all deps / components * Split VaultPage into many components for better scalability * Fixed potential exploit with getPasswords action * Implemented settings * Scaled up favicon for password item * Bumped version to 0.1.2b * Added ability to reset vault * Added ability to set / save encryption key * Migrated to tailwind V4 * Removed deprecated images.domains nextjs config * Cleaned up code
1 parent 2d51dd4 commit 66f2117

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+16052
-2452
lines changed

next.config.mjs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
/** @type {import('next').NextConfig} */
22
const nextConfig = {
33
images: {
4-
domains: [
5-
"s2.googleusercontent.com"
4+
remotePatterns: [
5+
{
6+
protocol: 'https',
7+
hostname: 's2.googleusercontent.com',
8+
pathname: '**',
9+
},
610
]
711
}
812
};

0 commit comments

Comments
 (0)