我尝试将.env
文件添加到目录的根目录,并尝试使用
[@bs.val] external graphqlUrl : string = "process.env.GRAPHQL_URL";
但它当我Js.log(graphqlUrl);
是undefined
!
.env
文件:
GRAPHQL_URL=https://api.example.com
我如何访问它?
谢谢!
我尝试将.env
文件添加到目录的根目录,并尝试使用
[@bs.val] external graphqlUrl : string = "process.env.GRAPHQL_URL";
但它当我Js.log(graphqlUrl);
是undefined
!
.env
文件:
GRAPHQL_URL=https://api.example.com
我如何访问它?
谢谢!
我听从了Rem Lampa先生的建议,在我的项目中安装了dotenv-webpack 。然后我按照dotenv-webpack
文档上的说明进行操作。
该webpack.config.js
文件现在如下所示:
const path = require('path');
const outputDir = path.join(__dirname, "build/");
const isProd = process.env.NODE_ENV === 'production';
const Dotenv = require('dotenv-webpack');
module.exports = {
entry: './src/Index.bs.js',
mode: isProd ? 'production' : 'development',
output: {
path: outputDir,
publicPath: outputDir,
filename: 'Index.js',
},
plugins: [
new Dotenv()
]
};