I'm trying to use an external library in Svelte whose instructions are for node.js, for example:
var lunr = require("lunr")
require("lunr-languages/lunr.stemmer.support")(lunr)
require('lunr-languages/lunr.multi')(lunr)
require("lunr-languages/lunr.de")(lunr)
The first import I simply converted to import lunr from "lunr"
and it works as expected (after npm install of course). However, I have no idea how to import the other 3 lines with that special syntax. Any advice?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…