From 97b05f5579e863e3b6a03d3113236f64fe489583 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sat, 22 Oct 2022 23:51:41 +0300 Subject: feat: use external stylesheet --- src/pages/_document.tsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/pages/_document.tsx (limited to 'src/pages/_document.tsx') diff --git a/src/pages/_document.tsx b/src/pages/_document.tsx new file mode 100644 index 0000000..c783ad4 --- /dev/null +++ b/src/pages/_document.tsx @@ -0,0 +1,16 @@ +import { Html, Head, Main, NextScript } from 'next/document' +import benzinConfig from '../benzinConfig' + +export default function Document() { + return ( + + + + + +
+ + + + ) +} -- cgit v1.2.3