mirror of
https://github.com/recloudstream/website.git
synced 2024-08-15 03:18:45 +00:00
17 lines
No EOL
390 B
JavaScript
17 lines
No EOL
390 B
JavaScript
import { init } from '@noriginmedia/norigin-spatial-navigation';
|
|
|
|
require("prism-themes/themes/prism-dracula.min.css")
|
|
|
|
const isBrowser = typeof window !== "undefined"
|
|
|
|
if (isBrowser) {
|
|
init({
|
|
visualDebug: false
|
|
});
|
|
|
|
// window.addEventListener("keypress", (evt) => {
|
|
// if (evt.keyCode === 461) {
|
|
// window.history.go(-1)
|
|
// }
|
|
// })
|
|
} |