mirror of
https://github.com/huhu/rust-search-extension
synced 2024-11-14 15:47:12 +00:00
Fix import path
This commit is contained in:
parent
bd7d3abe02
commit
8b07c6b695
1 changed files with 9 additions and 9 deletions
18
docs/static/js/update-index.js
vendored
18
docs/static/js/update-index.js
vendored
|
@ -1,12 +1,12 @@
|
|||
import caniuseIndex from "./index/caniuse.js";
|
||||
import booksIndex from "./index/books.js";
|
||||
import commandsIndex from "./index/commands.js";
|
||||
import labelsIndex from "./index/labels.js";
|
||||
import lintsIndex from "./index/lints.js";
|
||||
import rfcsIndex from "./index/rfcs.js";
|
||||
import rustcIndex from "./index/rustc.js";
|
||||
import targetsIndex from "./index/targets.js";
|
||||
import { mapping, crateIndex } from "./crates/index.js";
|
||||
import caniuseIndex from "../index/caniuse.js";
|
||||
import booksIndex from "../index/books.js";
|
||||
import commandsIndex from "../index/commands.js";
|
||||
import labelsIndex from "../index/labels.js";
|
||||
import lintsIndex from "../index/lints.js";
|
||||
import rfcsIndex from "../index/rfcs.js";
|
||||
import rustcIndex from "../index/rustc.js";
|
||||
import targetsIndex from "../index/targets.js";
|
||||
import { mapping, crateIndex } from "../crates/index.js";
|
||||
|
||||
const indexList = document.querySelector(".index-list");
|
||||
|
||||
|
|
Loading…
Reference in a new issue