SoFunction
Updated on 2025-04-03

How to make public configuration files in react project

Make public configuration files in react project

There is a public folder in our react project. This place stores static files and will not be compiled, so our static public configuration file is placed here

One advantage of putting public configuration files here is that anyone can modify the configuration files in real time, and the program will run the corresponding logic or variables according to your modifications.

like:

Our developers have made this configuration file function, and we can tell other non-development colleagues to configure the required content here. Isn’t it very convenient?

Let's take a look below

1. Create in public

 = {
	baseUrl: 'xxxxx',
	mainTitle: 'xxxx',
	imgUrl: 'xxxx',
	...
}

2. Add in

Note that %PUBLIC_URL% here is a built-in writing method for the project. When we create the project, we can see a lot of such writing methods, which means taking the path to the public file.

And I suggest you use script to introduce it, so that we can ensure that we get the modified content every time the page is refreshed. If you use import, it will be packaged directly during compilation, resulting in invalid changes to the configuration file after the package is completed.

<script src = "%PUBLIC_URL%/"></script>

3. In the entry src -> file

// Everyone should be familiar with it, which is to mount the content of the function configuration file to the global level. This is similar to the writing method of vue.$config = 

4. Use it in components, for example, we added image addresses to the public configuration file, so use:

.PUBLIC_URL

let imgUrl = this.$
<img  src={`${.PUBLIC_URL}/${imgUrl}`}></ img>

As we see above, it is an API provided by Nodejs, which returns an object containing user environment information.

If we give Nodejs

Set an environment variable and mount it on the returned object, so you can make corresponding environment judgments in the code

// If we sometimes see such code, we are judging whether it is currently a production or development environment to determine the definition of the mode field. = {
  mode: .NODE_ENV === 'production' ? 'production' : 'development'
}

React project optimization configuration

Optimization - Configure CDN

Modify webpack configuration through craco to achieve CDN optimization

 yarn add  @craco/craco
//or npm install  @craco/craco --save

Create a new file in the project root directory

 
 
// Add custom configuration for webpack 
const path = require('path')
const { whenProd, getPlugin, pluginByName } = require('@craco/craco')
 
 = {
  // webpack configuration  webpack: {
    // Configure alias    alias: {
      // Contract: Use @ to represent the path where the src file is located      '@': (__dirname, 'src')
    },
    // Configure webpack    // Configure CDN    configure: (webpackConfig) =&gt; {
      // webpack configuration object automatically injected by webpackConfig      // You can make detailed custom configuration in this function      // Just return it in the end      let cdn = {
        js: [],
        css: []
      }
      // Only the production environment is configured      whenProd(() =&gt; {
        // key: specific packages that need not participate in packaging        // value: The name of the variable mounted globally in the cdn file. In order to replace the previous development environment, in the development environment        // react/react-dom imported through import         = {
          react: 'React',
          'react-dom': 'ReactDOM'
        }
        // Configure the ready-made cdn resource array now public for testing        // In actual development, use the CDN server that the company paid for by itself        cdn = {
          js: [
            '/ajax/libs/react/18.1.0/umd/',
            '/ajax/libs/react-dom/18.1.0/umd/',
          ],
          css: []
        }
      })
 
      // All are for the purpose of configuring the htmlWebpackPlugin plugin in the future. Inject it in public/      // Some ready-made resources are available when cdn resource array      const { isFound, match } = getPlugin(
        webpackConfig,
        pluginByName('HtmlWebpackPlugin')
      )
 
      if (isFound) {
        // Found the plugin for HtmlWebpackPlugin         = cdn
      }
 
      return webpackConfig
    }
  }
}

public/ 

&lt;body&gt;
  &lt;div &gt;&lt;/div&gt;
  &lt;!-- Loading the third package CDN Link --&gt;
  &lt;% (cdnURL =&gt; { %&gt;
    &lt;script src="&lt;%= cdnURL %&gt;"&gt;&lt;/script&gt;
  &lt;% }) %&gt;
&lt;/body&gt;

Optimization - Lazy Loading of Routing

Steps to use

  • In the App component, import the Suspense component
  • Inside the routing Router, use the Suspense component to wrap the component contents
  • Provides fallback attribute for Suspense component, specifying loading placeholder content
  • Import lazy functions and modify them to lazy loading method to import routing components

Code implementation

import { Routes, Route } from 'react-router-dom'
import { HistoryRouter, history } from './utils/history'
import { AuthRoute } from './components/AuthRoute'
 
// Import necessary componentsimport { lazy, Suspense } from 'react'
// Import routing components on demandconst Login = lazy(() =&gt; import('./pages/Login'))
const Layout = lazy(() =&gt; import('./pages/Layout'))
const Home = lazy(() =&gt; import('./pages/Home'))
const Article = lazy(() =&gt; import('./pages/Article'))
const Publish = lazy(() =&gt; import('./pages/Publish'))
 
function App () {
  return (
    &lt;HistoryRouter history={history}&gt;
      &lt;Suspense
        fallback={
          &lt;div
            style={{
              textAlign: 'center',
              marginTop: 200
            }}
          &gt;
            loading...
          &lt;/div&gt;
        }
      &gt;
        &lt;Routes&gt;
          {/* Routes that require authentication */}
          &lt;Route path="/" element={
            &lt;AuthRoute&gt;
              &lt;Layout /&gt;
            &lt;/AuthRoute&gt;
          }&gt;
            {/* Default page for secondary routing */}
            &lt;Route index element={&lt;Home /&gt;} /&gt;
            &lt;Route path="article" element={&lt;Article /&gt;} /&gt;
            &lt;Route path="publish" element={&lt;Publish /&gt;} /&gt;
          &lt;/Route&gt;
          {/* Routes that do not require authentication */}
          &lt;Route path='/login' element={&lt;Login /&gt;} /&gt;
        &lt;/Routes&gt;
      &lt;/Suspense&gt;
    &lt;/HistoryRouter&gt;
  )
}
 
export default App

View the effect

After packaging, we can monitor the request status of network panel resources by switching routes and verify whether the separation is successful

Summarize

The above is personal experience. I hope you can give you a reference and I hope you can support me more.