GithubHelp home page GithubHelp logo

Comments (11)

the-alchemist-gh avatar the-alchemist-gh commented on July 30, 2024 1

Hi, I was having the same problem, having found other packages with the same issue with Next, the recommended solution was to install the 'next-transpile-modules' package and change some edits to the next.config.

//Inside your next.config.js
const withTM = require('next-transpile-modules')(['localbase']) // pass the modules you would like to see transpiled
module.exports = withTM()

My current use of the Localbase is dead simple, so I didn't really test a lot of the functionality, but everything should work normally.
nice workedย ๐Ÿ‘...but add() overwrite after refresh ...any fix ?

Any Fix Yet?

from localbase.

MdYeasinSamadArnob avatar MdYeasinSamadArnob commented on July 30, 2024

Hello!!.... Did you found any way to use it in next.js ?

from localbase.

viveknigam3003 avatar viveknigam3003 commented on July 30, 2024

Hello!!.... Did you found any way to use it in next.js ?

@MdYeasinSamadArnob no I didn't. I switched to local storage instead ๐Ÿ˜…

from localbase.

mutqiamrillah avatar mutqiamrillah commented on July 30, 2024

same issue!

from localbase.

bielmarfran avatar bielmarfran commented on July 30, 2024

Hi, I was having the same problem, having found other packages with the same issue with Next, the recommended solution was to install the 'next-transpile-modules' package and change some edits to the next.config.

//Inside your next.config.js
const withTM = require('next-transpile-modules')(['localbase']) // pass the modules you would like to see transpiled
module.exports = withTM()

My current use of the Localbase is dead simple, so I didn't really test a lot of the functionality, but everything should work normally.

from localbase.

Javadyakuza avatar Javadyakuza commented on July 30, 2024

try npm i localbase
or

<script src="https://unpkg.com/localbase/dist/localbase.dev.js"></script>
 <script src="./yourfile.js" type="mudule"></script>

use the first script tag instead of installing npm and stuff
and use the second script tag as your own js file to write your codes

from localbase.

AntonLie avatar AntonLie commented on July 30, 2024

same issue

from localbase.

fullupe avatar fullupe commented on July 30, 2024

Hi, I was having the same problem, having found other packages with the same issue with Next, the recommended solution was to install the 'next-transpile-modules' package and change some edits to the next.config.

//Inside your next.config.js
const withTM = require('next-transpile-modules')(['localbase']) // pass the modules you would like to see transpiled
module.exports = withTM()

My current use of the Localbase is dead simple, so I didn't really test a lot of the functionality, but everything should work normally.
nice workedย ๐Ÿ‘...but add() overwrite after refresh ...any fix ?

from localbase.

the-alchemist-gh avatar the-alchemist-gh commented on July 30, 2024

Hello, Did you find any fix for this Issue?

from localbase.

BasilArackal avatar BasilArackal commented on July 30, 2024

const withTM = require('next-transpile-modules')(['localbase']) // pass the modules you would like to see transpiled
module.exports = withTM()

With Next.js 13 or Above the syntax is as follows ๐Ÿ‘

const nextConfig = {
...
transpilePackages: ["localbase"],
};

module.exports = nextConfig;

from localbase.

samuk190 avatar samuk190 commented on July 30, 2024

try npm i localbase or

<script src="https://unpkg.com/localbase/dist/localbase.dev.js"></script>
 <script src="./yourfile.js" type="mudule"></script>

use the first script tag instead of installing npm and stuff and use the second script tag as your own js file to write your codes

This is the correct answer for next <13

next > 13

const nextConfig = {
...
transpilePackages: ["localbase"],
};

module.exports = nextConfig;

I will add to doc

from localbase.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.