You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to integrate my React app with existing .NET project, so I did the following:
Changed yarn build to: react-scripts build && move build ../Client/assets/build/AppName
Created aspx.page with the following routing:
2.1 <link rel="stylesheet" href='./assets/build/**[WHAT I NEED HERE]**.bundle.css'>
2.2 <script src="assets/build/**[WHAT I NEED HERE]**.bundle.js"></script>
Keep getting the following https responses:
2.1 GET http://localhost:55752/static/media/logo.5d5d9eef.svg 404 (Not Found)
2.2 GET http://localhost:55752/service-worker.js 404 (Not Found)
My CRA App became the 1st page seen when the project is up, but the user should see it only after he click a button.
Thanks
The text was updated successfully, but these errors were encountered:
Is this a bug report?
No
Which terms did you search for in User Guide?
file name, webpack output
Environment
yarn: 1.7.0
npm 6.3.0
node 8.11.3
"react": @"^16.4.2",
"react-dom": "^16.4.2"
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"react-scripts": "1.1.4"
Windows 8
Steps to Reproduce
I am trying to integrate my React app with existing .NET project, so I did the following:
yarn build
to:react-scripts build && move build ../Client/assets/build/AppName
2.1
<link rel="stylesheet" href='./assets/build/**[WHAT I NEED HERE]**.bundle.css'>
2.2
<script src="assets/build/**[WHAT I NEED HERE]**.bundle.js"></script>
My issues are:
2.1
GET http://localhost:55752/static/media/logo.5d5d9eef.svg 404 (Not Found)
2.2
GET http://localhost:55752/service-worker.js 404 (Not Found)
Thanks
The text was updated successfully, but these errors were encountered: