OpenSourceHelpCommunity/Questions

TailWind Css 304 Error

Opened this issue · 0 comments

When i try to write tailwind it doesnt seem to work i wanna know why, ive tried different methods such as .htacess, adding a some code i found in stackoverflow

`const express = require('express');
const app = express();

var path = require(path)
app.use(express.staticpath,join((__dirname + '/src')));

const PORT = process.env.PORT || 3000;
app.listen(PORT, () => {
console.log(Server is running on port ${PORT});
});
`

this is Tailwind config

/** @type {import('tailwindcss').Config} */ module.exports = { content: [ "./poke/index.html", "./src/**/*.{css,js,jsx,ts,tsx,html}", "./poke/src/pages/**/*.html", "./poke/src/pages/**/*.jsx", "./poke/src/pages/**/*.css" ], theme: { extend: {}, }, plugins: [], }
if you need more info check my lastest repo ive been trying everyday