Giter Site home page Giter Site logo

Comments (1)

nightah avatar nightah commented on May 29, 2024

Upon further testing it appears the .env.production isn't loaded at all and instead it's loading the .env.development file.

This is despite it being a Production build. I suspect this is a bug with the package?

Looks like I if I modify the .env.development or put a .env.development.local the build message suggests that it will build with the %PUBLIC_URL% variable:

yarn install v1.22.5
[1/4] Resolving packages...
[2/4] Fetching packages...
info [email protected]: The platform "linux" is incompatible with this module.
info "[email protected]" is an optional dependency and failed compatibility check. Excluding it from installation.
info [email protected]: The platform "linux" is incompatible with this module.
info "[email protected]" is an optional dependency and failed compatibility check. Excluding it from installation.
[3/4] Linking dependencies...
warning " > [email protected]" has unmet peer dependency "prop-types@^15.6.0".
warning " > [email protected]" has unmet peer dependency "prop-types@^15.6.0".
[4/4] Building fresh packages...
Done in 64.23s.
yarn run v1.22.5
$ CYPRESS_INSTRUMENT_PRODUCTION=true react-scripts -r @cypress/instrument-cra build
Creating an optimized production build...
Browserslist: caniuse-lite is outdated. Please run:
npx browserslist@latest --update-db
Compiled successfully.

File sizes after gzip:

  131.88 KB         build/static/js/2.52b7d34d.chunk.js
  41.47 KB (-32 B)  build/static/js/main.a675f3a4.chunk.js
  1.38 KB           build/static/css/2.89e66999.chunk.css
  768 B             build/static/js/runtime-main.aef01254.js
  613 B             build/static/css/main.7bb9a71f.chunk.css

The project was built assuming it is hosted at {{.Base}}/.
You can control this with the homepage field in your package.json.

The build folder is ready to be deployed.
You may serve it with a static server:

  yarn global add serve
  serve -s build

Find out more about deployment here:

  https://cra.link/deployment

Done in 35.96s.

However it still appears that the static assets generated, specifically the index.html isn't replacing the variable properly:

Without instrument-cra:

<!doctype html>
<html lang="en">
   <head>
      <meta property="csp-nonce" content="{{.CSPNonce}}"/>
      <meta charset="utf-8"/>
      <meta name="viewport" content="width=device-width,initial-scale=1"/>
      <meta name="theme-color" content="#000000"/>
      <meta name="description" content="Authelia login portal for your apps"/>
      <link rel="manifest" href="{{.Base}}/manifest.json"/>
      <link rel="icon" href="{{.Base}}/favicon.ico"/>
      <title>Login - Authelia</title>
      <link href="{{.Base}}/static/css/2.89e66999.chunk.css" rel="stylesheet">
      <link href="{{.Base}}/static/css/main.7bb9a71f.chunk.css" rel="stylesheet">
   </head>
   <body data-basepath="{{.Base}}" data-rememberme="{{.RememberMe}}" data-resetpassword="{{.ResetPassword}}">
      <noscript>You need to enable JavaScript to run this app.</noscript>
      <div id="root"></div>
      <script src="{{.Base}}/static/js/runtime-main.cc5273ce.js"></script><script src="{{.Base}}/static/js/2.4c76f514.chunk.js"></script><script src="{{.Base}}/static/js/main.3f4320b6.chunk.js"></script>
   </body>
</html>

With instrument-cra:

<!doctype html>
<html lang="en">
   <head>
      <meta property="csp-nonce" content="{{.CSPNonce}}"/>
      <meta charset="utf-8"/>
      <meta name="viewport" content="width=device-width,initial-scale=1"/>
      <meta name="theme-color" content="#000000"/>
      <meta name="description" content="Authelia login portal for your apps"/>
      <link rel="manifest" href="/manifest.json"/>
      <link rel="icon" href="/favicon.ico"/>
      <title>Login - Authelia</title>
      <link href="/static/css/2.89e66999.chunk.css" rel="stylesheet">
      <link href="/static/css/main.7bb9a71f.chunk.css" rel="stylesheet">
   </head>
   <body data-basepath="" data-rememberme="{{.RememberMe}}" data-resetpassword="{{.ResetPassword}}">
      <noscript>You need to enable JavaScript to run this app.</noscript>
      <div id="root"></div>
      <script src="/static/js/runtime-main.aef01254.js"></script><script src="/static/js/2.4c76f514.chunk.js"></script><script src="/static/js/main.43db2b5d.chunk.js"></script>
   </body>
</html>

from instrument-cra.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.