fix config
This commit is contained in:
parent
ffbded4fb1
commit
2d0250c178
|
|
@ -1,18 +1,14 @@
|
|||
/** @type {import('next').NextConfig} */
|
||||
const nextConfig = {
|
||||
reactStrictMode: true,
|
||||
swcMinify: true,
|
||||
experimental: {
|
||||
// Enable if you want to use app directory in the future
|
||||
appDir: false
|
||||
},
|
||||
// Environment variables that should be available on the client side
|
||||
env: {
|
||||
NEXT_PUBLIC_PUSHER_APP_KEY: process.env.NEXT_PUBLIC_PUSHER_APP_KEY,
|
||||
NEXT_PUBLIC_PUSHER_CLUSTER: process.env.NEXT_PUBLIC_PUSHER_CLUSTER,
|
||||
NEXT_PUBLIC_SUPABASE_URL: process.env.NEXT_PUBLIC_SUPABASE_URL,
|
||||
NEXT_PUBLIC_SUPABASE_ANON_KEY: process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY,
|
||||
}
|
||||
reactStrictMode: true,
|
||||
swcMinify: true,
|
||||
// Environment variables that should be available on the client side
|
||||
env: {
|
||||
NEXT_PUBLIC_PUSHER_APP_KEY: process.env.NEXT_PUBLIC_PUSHER_APP_KEY,
|
||||
NEXT_PUBLIC_PUSHER_CLUSTER: process.env.NEXT_PUBLIC_PUSHER_CLUSTER,
|
||||
NEXT_PUBLIC_SUPABASE_URL: process.env.NEXT_PUBLIC_SUPABASE_URL,
|
||||
NEXT_PUBLIC_SUPABASE_ANON_KEY: process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY,
|
||||
}
|
||||
|
||||
module.exports = nextConfig
|
||||
}
|
||||
|
||||
module.exports = nextConfig
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
// This is a placeholder for favicon.ico
|
||||
// You can download a mushroom icon from any favicon generator
|
||||
// or use this simple text file as a placeholder
|
||||
|
||||
// For now, create an empty file named favicon.ico in the public/ directory
|
||||
// You can generate a real favicon later at https://favicon.io/
|
||||
Loading…
Reference in New Issue