From 867a5e7a78c6c7c468107353ce93ab541938ca1e Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Sat, 11 Sep 2021 13:23:18 -0500 Subject: [PATCH] Add tailwind to _app --- jsconfig.json | 1 + pages/_app.js | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 pages/_app.js diff --git a/jsconfig.json b/jsconfig.json index 6a18073..8d990f3 100644 --- a/jsconfig.json +++ b/jsconfig.json @@ -4,6 +4,7 @@ "paths": { "@/components/*": ["components/*"], "@/helpers/*": ["helpers/*"], + "@/styles/*": ["assets/css/*"], } } } diff --git a/pages/_app.js b/pages/_app.js new file mode 100644 index 0000000..bca96e2 --- /dev/null +++ b/pages/_app.js @@ -0,0 +1,7 @@ +import '@/styles/tailwind.css' + +function MyApp({ Component, pageProps }) { + return +} + +export default MyApp