3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-25 18:25:03 +00:00

feat: docker support (#1)

This commit is contained in:
Code 2022-08-08 17:47:51 -04:00 committed by GitHub
commit cf46786101
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
56 changed files with 738 additions and 229 deletions

View file

@ -1 +0,0 @@
API_URL=

View file

@ -1,5 +1,3 @@
require("dotenv").config();
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"],