Coder Social home page Coder Social logo

Comments (4)

serg06 avatar serg06 commented on August 17, 2024 1

I'll just add my solution here in case anyone needs it:

  1. npm run eject
  2. Add this to config/paths.js
app404Html: resolveApp('public/404.html'),
  1. In config/webpack.config.js, replace this
      // Generates an `index.html` file with the <script> injected.
      new HtmlWebpackPlugin(
        Object.assign(
          {},
          {
            inject: true,
            template: paths.appHtml,
          },
          isEnvProduction
            ? {
                minify: {
                  removeComments: true,
                  collapseWhitespace: true,
                  removeRedundantAttributes: true,
                  useShortDoctype: true,
                  removeEmptyAttributes: true,
                  removeStyleLinkTypeAttributes: true,
                  keepClosingSlash: true,
                  minifyJS: true,
                  minifyCSS: true,
                  minifyURLs: true,
                },
              }
            : undefined
        )
    ),

with this:

      ...[
        {
          // Generates an `index.html` file with the <script> injected.
          inject: true,
          template: paths.appHtml,
          filename: 'index.html'
        },
        {
          // Generates a `404.html` file.
          inject: false,
          template: paths.app404Html,
          filename: '404.html'
        }
      ].map(
        cfg => new HtmlWebpackPlugin(
            Object.assign(
              {},
              cfg,
              isEnvProduction
                ? {
                    minify: {
                      removeComments: true,
                      collapseWhitespace: true,
                      removeRedundantAttributes: true,
                      useShortDoctype: true,
                      removeEmptyAttributes: true,
                      removeStyleLinkTypeAttributes: true,
                      keepClosingSlash: true,
                      minifyJS: true,
                      minifyCSS: true,
                      minifyURLs: true,
                    },
                  }
                : undefined
            )
          )
      ),

Boom, environmental variables work in 404.html.

from spa-github-pages.

rafgraph avatar rafgraph commented on August 17, 2024

I believe it’s possible, but I haven’t done it. You would need to set it up in your build tooling, which is out of scope for this project.

from spa-github-pages.

rafgraph avatar rafgraph commented on August 17, 2024

@serg06 thanks! Is this ejecting from create-react-app?

from spa-github-pages.

serg06 avatar serg06 commented on August 17, 2024

@rafgraph Yes

from spa-github-pages.

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.