Compare commits

..

No commits in common. "2d38b690faf12b764a2ca20fb9063169bd070cf8" and "376b82883152041093d4ebc7e3aaf2f6a198dd57" have entirely different histories.

5 changed files with 3 additions and 18 deletions

View File

@ -4,7 +4,6 @@
"private": true, "private": true,
"scripts": { "scripts": {
"serve": "vue-cli-service serve --port 3001", "serve": "vue-cli-service serve --port 3001",
"serve2": "vue-cli-service serve --port 3002",
"build": "vue-cli-service build", "build": "vue-cli-service build",
"lint": "vue-cli-service lint --check", "lint": "vue-cli-service lint --check",
"lint2": "eslint ./src --ext .js,.ts", "lint2": "eslint ./src --ext .js,.ts",

View File

@ -1,9 +1,4 @@
<template> <template>
<div class="container-fluid">
<div class="development-notice">
DEVELOPMENT SITE <br> >> Only for development purposes <<
</div>
</div>
<!-- <HelloWorld msg="Welcome to Your Vue.js plus TypeScript App" /> --> <!-- <HelloWorld msg="Welcome to Your Vue.js plus TypeScript App" /> -->
<nav class="navbar navbar-light border-bottom" role="navigation" aria-label="main navigation"> <nav class="navbar navbar-light border-bottom" role="navigation" aria-label="main navigation">
<div class="navbar-brand"> <div class="navbar-brand">
@ -266,12 +261,4 @@ footer .list-group-item a {
background-color: #384d6e; background-color: #384d6e;
padding: 0.3em 0; padding: 0.3em 0;
} }
.development-notice {
text-align: center;
color: #fff;
background-color: red;
padding: 1em 0;
font-weight: bold;
}
</style> </style>

View File

@ -15,7 +15,7 @@ const host = window.location.host;
const parts = host.split("."); const parts = host.split(".");
// const domainLength = 2; // route1.example.com => domain length = 3 // const domainLength = 2; // route1.example.com => domain length = 3
let router, app; let router, app;
// exmample change // let routes;
if (parts[0] === "doi") { if (parts[0] === "doi") {
router = route1; router = route1;
app = App2; app = App2;

View File

@ -193,8 +193,8 @@
<div class="columns is-mobile partner-logos"> <div class="columns is-mobile partner-logos">
<div class="column col-sm text-center"> <div class="column col-sm text-center">
<a target="_blank" href="https://www.re3data.org/repository/r3d100013400" <a target="_blank" href="https://www.re3data.org/repository/r3d100013400"
><img src="@/assets/site/img/re3-data-logo-mono.jpg" alt="re3 data logo"/> ><img src="@/assets/site/img/re3-data-logo-mono.jpg" alt="re3 data logo"
</a> /></a>
</div> </div>
<div class="column col-sm text-center"> <div class="column col-sm text-center">
<a target="_blank" href="http://www.geosphere.at/"> <a target="_blank" href="http://www.geosphere.at/">

View File

@ -5,7 +5,6 @@ const webpack = require("webpack");
const { VueLoaderPlugin } = require("vue-loader"); const { VueLoaderPlugin } = require("vue-loader");
module.exports = { module.exports = {
lintOnSave: false,
publicPath: "/", publicPath: "/",
chainWebpack: (config) => { chainWebpack: (config) => {
const vueRule = config.module.rule("vue"); const vueRule = config.module.rule("vue");