mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-10 12:25:02 +00:00
Fix API_URL/API_DOMAIN usage in dashboard
This commit is contained in:
parent
122f535e34
commit
bc250209d8
4 changed files with 7 additions and 7 deletions
|
@ -1,5 +1,3 @@
|
|||
require("dotenv").config({ path: path.resolve(process.cwd(), "../.env") });
|
||||
|
||||
const path = require("path");
|
||||
const VueLoaderPlugin = require("vue-loader/lib/plugin");
|
||||
const HtmlWebpackPlugin = require("html-webpack-plugin");
|
||||
|
@ -154,7 +152,9 @@ let config = {
|
|||
js: ["./src/main.ts"],
|
||||
},
|
||||
}),
|
||||
new DotenvPlugin(),
|
||||
new DotenvPlugin({
|
||||
path: path.resolve(process.cwd(), "../.env"),
|
||||
}),
|
||||
],
|
||||
resolve: {
|
||||
extensions: [".ts", ".tsx", ".js", ".mjs", ".vue"],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue