Skip to content

Commit 1a05ae3

Browse files
committed
fix: web app regression
1 parent abc1510 commit 1a05ae3

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

apps/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "",
55
"main": "index.js",
66
"scripts": {
7-
"dev:web": "next dev -p 3005",
7+
"dev:web": "next dev --webpack -p 3005",
88
"build": "next build --webpack",
99
"start": "next start",
1010
"lint": "next lint"

apps/web/tailwind.config.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
import type { Config } from "tailwindcss";
2+
import tailwindcssAnimate from "tailwindcss-animate";
3+
import tailwindcssTypography from "@tailwindcss/typography";
4+
import tailwindcssForms from "@tailwindcss/forms";
25

36
const config: Config = {
47
darkMode: ["class", '[data-theme="dark"]'],
@@ -113,9 +116,9 @@ const config: Config = {
113116
'text-white'
114117
],
115118
plugins: [
116-
require("tailwindcss-animate"),
117-
require("@tailwindcss/typography"),
118-
require("@tailwindcss/forms"),
119+
tailwindcssAnimate,
120+
tailwindcssTypography,
121+
tailwindcssForms,
119122
],
120123
};
121124

0 commit comments

Comments
 (0)