fix config
This commit is contained in:
parent
ffbded4fb1
commit
2d0250c178
|
|
@ -1,18 +1,14 @@
|
||||||
/** @type {import('next').NextConfig} */
|
/** @type {import('next').NextConfig} */
|
||||||
const nextConfig = {
|
const nextConfig = {
|
||||||
reactStrictMode: true,
|
reactStrictMode: true,
|
||||||
swcMinify: true,
|
swcMinify: true,
|
||||||
experimental: {
|
// Environment variables that should be available on the client side
|
||||||
// Enable if you want to use app directory in the future
|
env: {
|
||||||
appDir: false
|
NEXT_PUBLIC_PUSHER_APP_KEY: process.env.NEXT_PUBLIC_PUSHER_APP_KEY,
|
||||||
},
|
NEXT_PUBLIC_PUSHER_CLUSTER: process.env.NEXT_PUBLIC_PUSHER_CLUSTER,
|
||||||
// Environment variables that should be available on the client side
|
NEXT_PUBLIC_SUPABASE_URL: process.env.NEXT_PUBLIC_SUPABASE_URL,
|
||||||
env: {
|
NEXT_PUBLIC_SUPABASE_ANON_KEY: process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY,
|
||||||
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