Skip to content

Commit

Permalink
Merge pull request #2 from holaplex/anshul/create-ui
Browse files Browse the repository at this point in the history
Create ui
  • Loading branch information
kespinola authored Apr 20, 2023
2 parents a3c6ade + 86f62e1 commit 75cdb08
Show file tree
Hide file tree
Showing 29 changed files with 381 additions and 4,801 deletions.
6 changes: 2 additions & 4 deletions @types/graphql.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,16 @@ declare module '*/drop.graphql' {
import { DocumentNode } from 'graphql';
const defaultDocument: DocumentNode;
export const MintNft: DocumentNode;
export const GetDrops: DocumentNode;
export const GetDrop: DocumentNode;

export default defaultDocument;
}


declare module '*/key.graphql' {
declare module '*/mint.graphql' {
import { DocumentNode } from 'graphql';
const defaultDocument: DocumentNode;
export const ForgeKey: DocumentNode;
export const MintDrop: DocumentNode;

export default defaultDocument;
}
Expand All @@ -43,7 +42,6 @@ declare module '*/project.graphql' {
import { DocumentNode } from 'graphql';
const defaultDocument: DocumentNode;
export const GetProjectDrop: DocumentNode;
export const GetProjectDrops: DocumentNode;

export default defaultDocument;
}
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ services:
ports:
- 5432:5432
volumes:
- eluvio-sxsw:/var/lib/postgresql/data
- hub-starter-mint:/var/lib/postgresql/data
volumes:
eluvio-sxsw:
hub-starter-mint:
23 changes: 7 additions & 16 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,27 +1,18 @@
/** @type {import('next').NextConfig} */
const withGraphql = require("next-plugin-graphql");
const withGraphql = require('next-plugin-graphql');

const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**.googleusercontent.com",
pathname: "**",
},
],
protocol: 'https',
hostname: '**.googleusercontent.com',
pathname: '**'
}
]
},
experimental: {
appDir: true,
},
async redirects() {
return [
{
source: "/",
destination: "/keys",
permanent: false
},
];
appDir: true
},
};

Expand Down
Loading

0 comments on commit 75cdb08

Please sign in to comment.