forked from geolba/tethys.frontend
- add site title to vue.config
- lnaguage tag for html page - change portal api to new subdomain
This commit is contained in:
parent
ed7bd8c4d2
commit
fb40b230d9
3 changed files with 18 additions and 9 deletions
|
|
@ -1,4 +1,4 @@
|
|||
const webpack = require('webpack');
|
||||
const webpack = require("webpack");
|
||||
|
||||
module.exports = {
|
||||
publicPath: "/",
|
||||
|
|
@ -14,11 +14,18 @@ module.exports = {
|
|||
// return args
|
||||
// })
|
||||
// },
|
||||
configureWebpack: {
|
||||
pages: {
|
||||
index: {
|
||||
// entry for the page
|
||||
entry: "src/main.ts",
|
||||
title: "TETHYS - Research Data Repository",
|
||||
},
|
||||
},
|
||||
configureWebpack: {
|
||||
plugins: [
|
||||
new webpack.DefinePlugin({
|
||||
VUE_APP_PORTAL: JSON.stringify(process.env.VUE_APP_PORTAL),
|
||||
}),
|
||||
new webpack.DefinePlugin({
|
||||
VUE_APP_PORTAL: JSON.stringify(process.env.VUE_APP_PORTAL),
|
||||
}),
|
||||
],
|
||||
},
|
||||
}
|
||||
},
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue