We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a9415a commit d420b6aCopy full SHA for d420b6a
2 files changed
APIServer/gruntfile.js
@@ -11,7 +11,10 @@ module.exports = function (grunt) {
11
webpack: {
12
frontend: {
13
mode: "production",
14
- entry: "./public/js/GraphRedex.ts",
+ entry: {
15
+ GraphRedex: "./public/js/GraphRedex.ts",
16
+ util: "./public/js/util.ts",
17
+ },
18
module: {
19
rules: [
20
{
@@ -51,7 +54,7 @@ module.exports = function (grunt) {
51
54
devtool: "source-map",
52
55
output: {
53
56
libraryTarget: "amd", // to amd format for loading with requirejs
- filename: "GraphRedex.js",
57
+ filename: "[name].js",
58
path: path.resolve(__dirname, "public/dist"),
59
},
60
0 commit comments