mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Add tailwind to _app
This commit is contained in:
parent
44dea80340
commit
867a5e7a78
2 changed files with 8 additions and 0 deletions
|
|
@ -4,6 +4,7 @@
|
||||||
"paths": {
|
"paths": {
|
||||||
"@/components/*": ["components/*"],
|
"@/components/*": ["components/*"],
|
||||||
"@/helpers/*": ["helpers/*"],
|
"@/helpers/*": ["helpers/*"],
|
||||||
|
"@/styles/*": ["assets/css/*"],
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
7
pages/_app.js
Normal file
7
pages/_app.js
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
import '@/styles/tailwind.css'
|
||||||
|
|
||||||
|
function MyApp({ Component, pageProps }) {
|
||||||
|
return <Component {...pageProps} />
|
||||||
|
}
|
||||||
|
|
||||||
|
export default MyApp
|
||||||
Loading…
Add table
Add a link
Reference in a new issue