main
Last change
on this file was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago |
add customer
|
-
Property mode
set to
100644
|
File size:
382 bytes
|
Rev | Line | |
---|
[5d6f37a] | 1 | import hljs from 'highlight.js';
|
---|
| 2 | import 'highlight.js/styles/base16/tomorrow-night.css';
|
---|
| 3 |
|
---|
| 4 | // ----------------------------------------------------------------------
|
---|
| 5 |
|
---|
| 6 | declare global {
|
---|
| 7 | interface Window {
|
---|
| 8 | hljs: any;
|
---|
| 9 | }
|
---|
| 10 | }
|
---|
| 11 |
|
---|
| 12 | hljs.configure({
|
---|
| 13 | languages: ['javascript', 'sh', 'bash', 'html', 'scss', 'css', 'json'],
|
---|
| 14 | });
|
---|
| 15 |
|
---|
| 16 | if (typeof window !== 'undefined') {
|
---|
| 17 | window.hljs = hljs;
|
---|
| 18 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.