Skip to content

Commit

Permalink
setup static export
Browse files Browse the repository at this point in the history
  • Loading branch information
Michal Turcan committed Jul 3, 2023
1 parent f4a65f5 commit c704772
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/frontend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ jobs:
apiToken: ${{ secrets.CLOUDFLARE_PAGES_TOKEN }}
accountId: 620ff29bbd515d2848f5306578bd1d1d
projectName: alliance-dashboard
directory: .next
directory: out
gitHubToken: ${{ secrets.TFL_GITHUB_TOKEN }}
13 changes: 10 additions & 3 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
images: { domains: ['gravedigger.backbonelabs.io', 'www.erisprotocol.com', 'raw.githubusercontent.com'] }
}
output: 'export',
images: {
domains: [
'gravedigger.backbonelabs.io',
'www.erisprotocol.com',
'raw.githubusercontent.com',
],
},
};

module.exports = nextConfig
module.exports = nextConfig;

0 comments on commit c704772

Please sign in to comment.