diff options
author | 2020-12-29 16:01:16 +0300 | |
---|---|---|
committer | 2020-12-29 16:01:16 +0300 | |
commit | 6324384bb0d9f20a25f226e549b9a7cd7b572cb5 (patch) | |
tree | f2b1e56a0ef6ab4cb0bdc305b55660e806fc1ee8 /webpack.config.js | |
parent | Merge pull request #57 from python-discord/ks123/optional-questions (diff) |
Implements `.env` Loading
Signed-off-by: Hassan Abouelela <[email protected]>
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/webpack.config.js b/webpack.config.js index ac150e1..4694322 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -2,6 +2,7 @@ const path = require("path") const HtmlWebpackPlugin = require("html-webpack-plugin"); const CopyPlugin = require('copy-webpack-plugin'); const webpack = require("webpack") +require("dotenv").config(); module.exports = { entry: "./src/index.tsx", |