diff options
author | 2020-12-29 18:15:00 +0000 | |
---|---|---|
committer | 2020-12-29 18:15:00 +0000 | |
commit | 147ce78336f66508cbdcfc4a6887b83267b7edfa (patch) | |
tree | 9cf1d86bf4fb1cf556de376551eff865c113aeed /webpack.config.js | |
parent | Merge pull request #61 from python-discord/renovate/webpack-dev-server-3.x (diff) | |
parent | Implements `.env` Loading (diff) |
Merge pull request #60 from python-discord/add-dotenv
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", |