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