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