Мое приложение React не создано с использованием 'create-реакции-приложения'.
Я могу console.log из webpack.config.js среды процессов, которые я импортировал и проанализировал из файла .envиспользуя библиотеку dotenv.
Однако «npm run build» завершается неудачно.Когда я заменяю переменную строкой URL, 'npm run build' проходит.
webpack.config.js
const webpack = require('webpack');
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const dotenv = require('dotenv').config({path: 'config/docker/production/.env'});
// call dotenv and it will return an Object with a parsed key
const env = dotenv.parsed;
// reduce it to a nice object, the same as before
const envKeys = Object.keys(env).reduce((prev, next) => {
prev[`process.env.${next}`] = JSON.stringify(env[next]);
return prev;
}, {});
console.log(process.env.API_URL); -> prints out http://localhost:5000/api/something
const config = {
entry: __dirname + '/static/js/index.jsx',
output: {
path: __dirname + '/static/dist',
filename: 'bundle.js',
},
resolve: {
extensions: [".js", ".jsx", ".css"]
},
module: {
rules: [
{
test: /\.jsx?/,
exclude: /node_modules/,
use: 'babel-loader'
},
{
test: /\.css$/,
use: ['style-loader', MiniCssExtractPlugin.loader, 'css-loader']
},
{
test: /\.(png|svg|jpg|gif)$/,
use: 'file-loader'
}
]
},
plugins: [
new MiniCssExtractPlugin({
path: __dirname + '/static/dist',
filename: 'styles.css',
}),
new webpack.DefinePlugin(envKeys)
]
};
module.exports = config;
package.json
"scripts": {
"build": "webpack --mode production -p --progress --config webpack.config.js"
}
config / docker / production / .env
API_URL=http://]ocalhost:5000/api/something
MyComp.jsx
import React,{ Component } from 'react';
class MyComp extends Component {
constructor(props) {
super(props);
this.state = {
races: []};
}
componentDidMount(){
fetch({process.env.API_URL}) -> FAILS
fetch('http://localhost:5000/api/something') -> PASSES
.then(results => results.json())
.then(data => this.setState({ races: data.data }));
}
render() {
...
}
}
export default MyComp;