简体   繁体   English

无法使用 XAMPP 部署 React 项目

[英]Unable to deploy React project using XAMPP

How can I build my project so I can put it wherever I want?我怎样才能构建我的项目,以便我可以把它放在我想要的任何地方? For example, I would love to see it on, if it's possible, XAMPP ?例如,如果可能的话,我很想看到它XAMPP

Whenever I build my react app, index.html is empty.每当我构建我的反应应用程序时, index.html都是空的。

Here is the whole project on GitHub: https://github.com/slabys/reacty.git这是GitHub上的整个项目: https://github.com/slabys/reacty.git

Whenever I use npm run build , my folder build is created with all the content:每当我使用npm run build时,都会创建包含所有内容的文件夹build

构建结构完整的应用程序结构

index.html from build: https://pastebin.com/WSyAvrwu index.html来自构建: https://pastebin.com/WSyAvrwu

package.json package.json

    {
  "name": "my_react",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "@stardust-ui/docs-components": "^0.40.0",
    "@testing-library/jest-dom": "^4.2.4",
    "@testing-library/react": "^9.5.0",
    "@testing-library/user-event": "^7.2.1",
    "bootstrap": "^4.5.0",
    "browser-sync": "^2.26.7",
    "del": "^5.1.0",
    "express": "^4.17.1",
    "express-favicon": "^2.0.1",
    "gulp-autoprefixer": "^7.0.1",
    "gulp-concat": "^2.6.1",
    "gulp-copy": "^4.0.1",
    "gulp-data": "^1.3.1",
    "gulp-plumber": "^1.2.1",
    "gulp-sourcemaps": "^2.6.5",
    "gulp-twig": "^1.2.0",
    "prettier": "^1.4.2",
    "react": "^16.13.1",
    "react-dom": "^16.13.1",
    "react-router": "^5.2.0",
    "react-router-dom": "^5.2.0",
    "react-scripts": "3.4.1",
    "react-sidebar": "^3.0.2"
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject"
  },
  "eslintConfig": {
    "extends": "react-app"
  },
  "browserslist": {
    "production": [
      ">0.2%",
      "not dead",
      "not op_mini all"
    ],
    "development": [
      "last 1 chrome version",
      "last 1 firefox version",
      "last 1 safari version"
    ]
  },
  "description": "This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).",
  "main": "index.js",
  "devDependencies": {
    "@craco/craco": "^5.6.4",
    "@semantic-ui-react/craco-less": "^1.2.1",
    "gulp": "^4.0.2",
    "gulp-sass": "^4.1.0",
    "node-sass": "^4.14.1",
    "semantic-ui-less": "^2.4.1"
  },
  "author": "slabys",
  "license": "ISC",
  "repository": {
    "type": "git",
    "url": "react"
  },
  "optionalDependencies": {}
}

Problem solved!问题解决了!

All works fine.一切正常。 Just when I have this projects build in XAMPP htdocs , I put in into a folder.就在我在XAMPP htdocsbuild了这个项目时,我将其放入了一个文件夹中。 So after moving files from folder directly under localhost EVERYTHING started to work.因此,在直接从 localhost 下的文件夹中移动文件后,一切都开始工作了。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM