mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-06-14 06:24:25 +02:00
7 lines
228 B
JavaScript
7 lines
228 B
JavaScript
export default function ({ $config }) {
|
|
const script = document.createElement('script')
|
|
script.type = 'text/javascript'
|
|
script.src = `${$config.routerBasePath || ''}/libs/sortable.js`
|
|
|
|
document.head.appendChild(script)
|
|
} |