mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-07-16 14:21:41 +00:00
7 lines
208 B
JavaScript
7 lines
208 B
JavaScript
const path = require('path')
|
|
const url = require('url');
|
|
|
|
const serverPath = path.resolve(__dirname, 'test.js')
|
|
const serverUrl = url.pathToFileURL(serverPath).href
|
|
|
|
export { serverUrl as 'import.meta.url' }
|