openflexure-microscope-server/vue.config.js
Joel Collins e46334e7dd Revert "Track dist"
This reverts commit 3299e3e77e352106842f631db8ca51e86a084468
2020-06-01 12:58:43 +00:00

15 lines
261 B
JavaScript

var webpack = require("webpack");
module.exports = {
configureWebpack: {
plugins: [
new webpack.DefinePlugin({
"process.env": {
PACKAGE: JSON.stringify(require("./package.json"))
}
})
]
},
publicPath: ""
};