mirror of
https://github.com/mmahdium/portfolio.git
synced 2025-12-20 09:23:54 +01:00
7 lines
227 B
TypeScript
7 lines
227 B
TypeScript
export default defineNuxtPlugin(() => {
|
|
const script = document.createElement("script")
|
|
script.src = "https://media.bitterbrains.com/main.js?from=UILIB&type=top"
|
|
script.async = true
|
|
document.head.appendChild(script)
|
|
})
|