Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thedevs-network/kutt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorpoeti8 <ezzati.upt@gmail.com>2020-01-02 20:05:52 +0300
committerpoeti8 <ezzati.upt@gmail.com>2020-01-02 20:05:52 +0300
commit40bb10ce4ccdf4c3d20c78a955fc7cbe05c6803e (patch)
tree61cc7f284d9d24640a2d7a0544123406943ace5e /client
parent1fdc99fa52200b5cfe3481f6090beb559f135d6c (diff)
fix: move config to root folder
Diffstat (limited to 'client')
-rw-r--r--client/next.config.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/client/next.config.js b/client/next.config.js
deleted file mode 100644
index 9b0aae5..0000000
--- a/client/next.config.js
+++ /dev/null
@@ -1,10 +0,0 @@
-const { parsed: localEnv } = require("dotenv").config();
-const webpack = require("webpack");
-
-module.exports = {
- webpack(config) {
- config.plugins.push(new webpack.EnvironmentPlugin(localEnv));
-
- return config;
- }
-};