Skip to content

Commit

Permalink
feat: adicionando pagina de login
Browse files Browse the repository at this point in the history
  • Loading branch information
taciomedeiros committed Sep 17, 2024
1 parent 2ff136b commit 3d490ee
Show file tree
Hide file tree
Showing 19 changed files with 5,224 additions and 2,714 deletions.
17 changes: 16 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1,2 +1,17 @@
NEXT_PUBLIC_SITE_URL=http://localhost:3000
FIREBASE_SERVICE_ACCOUNT=
FIREBASE_SERVICE_ACCOUNT=

FIREBASE_ADMIN_CLIENT_EMAIL=
FIREBASE_ADMIN_PRIVATE_KEY=

AUTH_COOKIE_NAME=AuthToken
AUTH_COOKIE_SIGNATURE_KEY_CURRENT=secret1
AUTH_COOKIE_SIGNATURE_KEY_PREVIOUS=secret2
USE_SECURE_COOKIES=false


NEXT_PUBLIC_FIREBASE_PROJECT_ID=
NEXT_PUBLIC_FIREBASE_API_KEY= #Web API Key retrieved from Project Settings general page
NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN= #your-project-id.firebaseapp.com
NEXT_PUBLIC_FIREBASE_DATABASE_URL= #your-project-id.firebaseio.com
NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID= # This is the Firebase Cloud Messaging (FCM) sender ID
3 changes: 1 addition & 2 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
reactStrictMode: true,
swcMinify: true,
trailingSlash: true,
images: {
dangerouslyAllowSVG: true,
domains: ['firebasestorage.googleapis.com', 'media.licdn.com', 'raw.githubusercontent.com'],
},
/*exportPathMap: async function (
Expand Down
Loading

0 comments on commit 3d490ee

Please sign in to comment.