Fix tailwind not applying styles

This commit is contained in:
Rory Healy 2023-10-27 16:20:28 +11:00
parent b4e2ece4d8
commit fc8e860dc0
Signed by: roryhealy
GPG Key ID: 0A3CBDE9C2AE672F
4 changed files with 5 additions and 1 deletions

View File

@ -4,4 +4,3 @@
"trailingComma": "none",
"printWidth": 120
}

3
app/globals.css Normal file
View File

@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

View File

@ -1,5 +1,6 @@
import type { Metadata } from 'next';
import localFont from 'next/font/local';
import './globals.css'
const font = localFont({
src: '../public/fonts/ManropeVariable.woff2',

View File

@ -25,4 +25,5 @@ const config: Config = {
},
plugins: [],
}
export default config