mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
10 lines
250 B
JavaScript
10 lines
250 B
JavaScript
import ExampleWorker from '~/assets/js/Example.worker.js' // worker files has to end in ".worker.js" - see nuxt.config.js
|
|
|
|
export default (context, inject) => {
|
|
inject('worker', {
|
|
createWorker () {
|
|
return new ExampleWorker()
|
|
}
|
|
})
|
|
}
|