使用 Typsecript 和 Tailwind 编译我的 Next js 项目失败

npm run dev 模式工作正常,但由于以下代码片段,我在构建过程中收到编译失败错误。

这些是 package.json 文件中的脚本、依赖项和开发依赖项:

perl 复制代码
  "scripts": {
    "dev": "next dev",
    "build": "next build",
    "start": "next start",
    "lint": "next lint"
  },
  "dependencies": {
    "autoprefixer": "^10.4.21",
    "clsx": "^2.1.1",
    "motion": "^12.18.1",
    "next": "15.3.3",
    "postcss": "^8.5.4",
    "react": "^19.0.0",
    "react-dom": "^19.0.0",
    "tailwind-merge": "^3.3.0"
  },
  "devDependencies": {
    "@eslint/eslintrc": "^3",
    "@svgr/webpack": "^8.1.0",
    "@tailwindcss/postcss": "^4",
    "@types/node": "^20",
    "@types/react": "^19",
    "@types/react-dom": "^19",
    "babel-plugin-inline-react-svg": "^2.0.2",
    "eslint": "^9",
    "eslint-config-next": "15.3.3",
    "tailwindcss": "^4.1.8",
    "typescript": "^5"
  }
}

这是英雄部分的完整代码:

javascript 复制代码
"use client";
import ArrowIcon from "@/assets/arrow-right.svg";
import poundImage from "@/assets/pound.png";
import houseImage from "@/assets/house.png";
import businessImage from "@/assets/business.png";

import { motion, useScroll, useTransform } from "framer-motion";

import { useRef } from "react";
export const Hero = () => {
    const heroRef = useRef(null);
    const { scrollYProgress } = useScroll({
        target: heroRef,
        offset: ["start end", "end start"],
    });
    const translateY = useTransform(scrollYProgress, [0, 1], [150, -150]);



    return <section ref={heroRef} className="pt-8 pb-20 md:pt-5 pl-20 pr-20 md:pb-10 bg-[radial-gradient(ellipse_200%_100%_at_bottom_left,#8a0194,#ffffff_100%)] overflow-x-clip">
        <div className="container">
            <div className="md:flex items-center">
                <div className="md:w-[478px]">
                    <div className="text-sm inline-flex border border-[#222]/10 px-3 py-1 rounded-lg tracking-tight">Rethink Finance</div>
                    <h1 className="text-5xl md:text-7xl font-bold tracking-tighter bg-gradient-to-b from-black to-[#8a0194] text-transparent bg-clip-text mt-6">Empowering Your Business with Smart Financial Solutions</h1>
                    <p className="text-xl text-[#8a0194] tracking-tight mt-6">Whether you are seizing new opportunities, investing in inventory, or streamlining your cash flow, our tailored financial solutions are designed to power your progress and take your business further.</p>
                    <div className="flex gap-1 items-center mt-[30px]">
                        <a href="https://us.bigin.online/org884823567/forms/check-your-funding-eligibility-for-free"><button className="bg-fuchsia-800 text-white focus:outline-none hover:bg-indigo-600 px-4 py-2 rounded-lg font-medium inline-flex items-center justify-center tracking-tight">Get Started</button></a>
                        <button className="text-black px-4 py-2 font-light inline-flex items-center justify-center tracking-tight gap-1">
                            <span>Learn more</span>
                            <ArrowIcon className="h-5 w-5" />
                        </button>
                    </div>
                </div>
                <div className="mt-20 md:mt-0 md:h-[648px] md:flex-1 relative">
                    <motion.img
                        src={poundImage.src} alt="Pound Image" className="md:absolute md:h-full md:w-auto md:max-w-none md:-left-6 lg:left-0"
                        animate={{
                            translateY: [-30, 30],
                        }}
                        transition={{
                            repeat: Infinity,
                            repeatType: "mirror",
                            duration: 2,
                            ease: "easeInOut",
                        }} />
                    <motion.img src={houseImage.src} width={220} height={220} alt="House image" className="hidden md:block -top-8 -left-32 md:absolute" style={{ translateY: translateY }} />
                    <motion.img src={businessImage.src} width={220} height={220} alt="Business image" className="hidden lg:block absolute top-[524px] left-[448px] rotate-[30deg]" style={{ translateY: translateY, }} />
                </div>
            </div>
        </div>

    </section>
};

这是我尝试编译项目时遇到的错误:

ini 复制代码
./src/sections/Hero.tsx:39:29
Type error: Object literal may only specify known properties, and 'translateY' does not exist in type 'string[] | TargetAndTransition | LegacyAnimationControls'.

  37 |                         src={poundImage.src} alt="Pound Image" className="md:absolute md:h-full md:w-auto md:max-w-none md:-left-6 lg:left-0"
  38 |                         animate={{
> 39 |                             translateY: [-30, 30],
     |                             ^
  40 |                         }}
  41 |                         transition={{
  42 |                             repeat: Infinity,
Next.js build worker exited with code: 1 and signal: null

造成此问题的原因是什么?以及如何解决。

对此有一个解决方案。以上内容由企业信息服务平台提供,致力于工商信用信息查询、企业风险识别、经营数据分析。 访问官网了解更多:www.mytiesarongs.com

相关推荐
GISer_Jing9 天前
React Next快速搭建前后端全栈项目并部署至Vercel
前端·react.js·前端框架
伍哥的传说9 天前
React 轻量级状态管理器Zustand
前端·javascript·react.js·小程序·前端框架·ecmascript
ZJ_.10 天前
Electron自动更新详解—包教会版
linux·前端·javascript·windows·electron·前端框架·node.js
今日亦是美好的一天10 天前
使用Tailwind CSS和i18n的react实践
前端·react.js·前端框架
伍哥的传说10 天前
react gsap动画库使用详解之text文本动画
前端·vue.js·react.js·前端框架·vue·html5·动画
非优秀程序员10 天前
阿里、字节、腾讯等大厂都在用的 12 大主流 AI 前端组件库
前端·人工智能·前端框架
鹏多多.10 天前
基于Vue3+TS的自定义指令开发与业务场景应用
前端·javascript·vue.js·前端框架
伍哥的传说10 天前
react gsap动画库使用详解之scroll滑动动画
前端·javascript·vue.js·react.js·前端框架·vue·动画
飞鸟malred10 天前
react快速开始项目模板
前端·react.js·前端框架