Error: My project is not starting up. #9815
DevSammy22
started this conversation in
General
Replies: 1 comment 12 replies
-
This is the error I got:
As the error message says, the file you are trying to import in |
Beta Was this translation helpful? Give feedback.
12 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
My project is not starting up.
This is the link to my repo: https://github.com/DevSammy22/Krypt-Web3-Full-Stack-Project.git
module.exports = {
purge: ["./src/**/*.{js,jsx,ts,tsx}", "./public/index.html"],
mode: "jit",
darkMode: false, //"media", // or 'media' or 'class'
theme: {
fontFamily: {
display: ["Open Sans", "sans-serif"],
body: ["Open Sans", "sans-serif"],
},
extend: {
screens: {
mf: "990px",
},
keyframes: {
"slide-in": {
"0%": {
"-webkit-transform": "translateX(120%)",
transform: "translateX(120%)",
},
"100%": {
"-webkit-transform": "translateX(0%)",
transform: "translateX(0%)",
},
},
},
animation: {
"slide-in": "slide-in 0.5s ease-out",
},
},
},
variants: {
extend: {},
},
plugins: [require("@tailwindcss/forms")],
};
When I run npm run dev I got the picture below

Beta Was this translation helpful? Give feedback.
All reactions