Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(Next.JS): Support server-side Next.JS usage #220

Open
wants to merge 5 commits into
base: main
Choose a base branch
from

Commits on Sep 8, 2023

  1. feat(Next.JS): Support server-side Next.JS usage

    Next.JS disallows relative imports since 12.0.1 (see
    https://nextjs.org/docs/messages/middleware-relative-urls for more
    information).  So, we need to sniff out if we are in the NEXTJS
    environment and if so, use the fallback URL.
    
    This should resolve:
    spacebudz#174
    
    [ Testing: deno task build ]
    thaddeusdiamond committed Sep 8, 2023
    Configuration menu
    Copy the full SHA
    a125e98 View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2024

  1. Merge pull request #1 from spacebudz/main

    Merge Latest Conway Changes
    thaddeusdiamond authored Sep 6, 2024
    Configuration menu
    Copy the full SHA
    2eee8ab View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f015a91 View commit details
    Browse the repository at this point in the history
  3. fix(build): Pull from hosted CDN instead of local

    Ideally we would want to use the paradigm that the build process set out
    to pull from a local lib, but we can't for NextJS.  Since this is a
    fork, we don't need to worry about a circular dependency (the fork will
    pull from the main).  Without this, NextJS splits the libraries into
    chunks and the path resolution fails.
    
    [ Testing: npm i lucid-cardano-nextjs@0.10.10-b4 ]
    thaddeusdiamond committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    bac58e4 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e13f382 View commit details
    Browse the repository at this point in the history