2

我尝试将.env文件添加到目录的根目录,并尝试使用

[@bs.val] external graphqlUrl : string = "process.env.GRAPHQL_URL";

但它当我Js.log(graphqlUrl);undefined

.env文件:

GRAPHQL_URL=https://api.example.com

我如何访问它?

谢谢!

4

1 回答 1

2

我听从了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()
  ]
};
于 2018-06-21T08:59:44.110 回答