moved Webpack bundle directory out of /static/js because it contains more than just JS files
This commit is contained in:
parent
6b2222a3ec
commit
c9fa22b093
6 changed files with 24 additions and 9 deletions
|
@ -4,7 +4,7 @@ var path = require("path");
|
|||
var config = {
|
||||
entry: "./static/js/quay.module.ts",
|
||||
output: {
|
||||
path: path.resolve(__dirname, "static/js/build"),
|
||||
path: path.resolve(__dirname, "static/build"),
|
||||
filename: "bundle.js"
|
||||
},
|
||||
resolve: {
|
||||
|
|
Reference in a new issue