mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-01-03 00:06:46 +01: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)
|
||
|
}
|