Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#SANITY
SANITY_PROJECT_ID= #string
SANITY_DATA_SET= #string
SANITY_USE_CDN= #boolean
37 changes: 0 additions & 37 deletions Dockerfile

This file was deleted.

17 changes: 0 additions & 17 deletions docker-compose.yml

This file was deleted.

13 changes: 12 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'cdn.sanity.io',
port: '',
pathname: '/**',
},
],
},
}

module.exports = nextConfig
Loading