Skip to content

Commit 2ea2464

Browse files
committed
enhacing ui
1 parent a1baf4e commit 2ea2464

11 files changed

+952
-151
lines changed

app.js

+2
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ app.use((req, res, next) => {
5959
// Routes
6060
app.use('/', require('./routes/index'));
6161
app.use('/users', require('./routes/users'));
62+
const taskRoutes = require('./routes/tasks');
63+
app.use('/tasks', taskRoutes);
6264

6365
const PORT = process.env.PORT || 5000;
6466
app.listen(PORT, () => console.log(`Server started on port ${PORT}`));

package-lock.json

+24-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
"passport-local": "^1.0.0"
2525
},
2626
"devDependencies": {
27+
"@tailwindcss/forms": "^0.5.9",
2728
"autoprefixer": "^10.4.20",
2829
"nodemon": "^3.1.7",
2930
"postcss": "^8.4.47",

0 commit comments

Comments
 (0)