インスタンス情報ページとMisskey情報ページを分離するなど

This commit is contained in:
syuilo
2020-02-13 02:48:52 +09:00
parent f0d187f71e
commit 2479f75d8a
9 changed files with 103 additions and 70 deletions

View File

@@ -10,7 +10,7 @@
import Vue from 'vue';
import XSetup from './index.welcome.setup.vue';
import XEntrance from './index.welcome.entrance.vue';
import { getInstanceName } from '../scripts/get-instance-name';
import { instanceName } from '../config';
export default Vue.extend({
components: {
@@ -20,7 +20,7 @@ export default Vue.extend({
data() {
return {
instanceName: getInstanceName(),
instanceName: instanceName || 'Misskey',
}
},