mirror of
https://github.com/danbulant/oxc
synced 2026-05-21 21:29:01 +00:00
fix(website): incorrect import (#863)
This was a fun one. 1) It worked fine in dev but failed in release and 2) the fix is importing the original file instead of a minified one. I love JS. Fixes #699, this time hopefully for good
This commit is contained in:
parent
9679ca754c
commit
58f4e234da
1 changed files with 1 additions and 1 deletions
|
|
@ -20,7 +20,7 @@ import { autocompletion } from "@codemirror/autocomplete";
|
|||
import { indentWithTab, deleteLine } from "@codemirror/commands";
|
||||
import throttle from "lodash.throttle";
|
||||
import { buildSchema } from "graphql";
|
||||
import { LZMA } from 'lzma/src/lzma_worker-min.js';
|
||||
import { LZMA } from 'lzma/src/lzma_worker.js';
|
||||
|
||||
import initWasm, {
|
||||
Oxc,
|
||||
|
|
|
|||
Loading…
Reference in a new issue