source: src/utils/highlight.ts@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 382 bytes
Line 
1import hljs from 'highlight.js';
2import 'highlight.js/styles/base16/tomorrow-night.css';
3
4// ----------------------------------------------------------------------
5
6declare global {
7 interface Window {
8 hljs: any;
9 }
10}
11
12hljs.configure({
13 languages: ['javascript', 'sh', 'bash', 'html', 'scss', 'css', 'json'],
14});
15
16if (typeof window !== 'undefined') {
17 window.hljs = hljs;
18}
Note: See TracBrowser for help on using the repository browser.