Linux premium262.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
LiteSpeed
Server IP : 67.223.118.64 & Your IP : 216.73.216.123
Domains :
Cant Read [ /etc/named.conf ]
User : srjiblsx
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
srjiblsx /
.trash /
Delete
Unzip
Name
Size
Permission
Date
Action
.github
[ DIR ]
drwxr-xr-x
2025-12-26 15:41
.husky
[ DIR ]
drwxr-xr-x
2025-12-26 15:41
.well-known
[ DIR ]
drwxr-xr-x
2025-12-26 13:45
api
[ DIR ]
drwxr-xr-x
2026-02-12 03:23
cache
[ DIR ]
drwxr-xr-x
2026-02-12 03:24
cgi-bin
[ DIR ]
drwxr-xr-x
2026-02-12 03:23
classes
[ DIR ]
drwxr-xr-x
2026-02-12 03:23
controllers
[ DIR ]
drwxr-xr-x
2026-02-12 03:23
dbscripts
[ DIR ]
drwxr-xr-x
2026-02-12 03:24
docs
[ DIR ]
drwxr-xr-x
2026-02-12 03:23
jobs
[ DIR ]
drwxr-xr-x
2026-02-12 03:24
js
[ DIR ]
drwxr-xr-x
2026-02-12 03:23
lib
[ DIR ]
drwxr-xr-x
2026-02-12 03:23
locale
[ DIR ]
drwxr-xr-x
2026-02-12 03:23
pages
[ DIR ]
drwxr-xr-x
2026-02-12 03:24
plugins
[ DIR ]
drwxr-xr-x
2026-02-12 03:23
public
[ DIR ]
drwxr-xr-x
2026-02-12 03:24
registry
[ DIR ]
drwxr-xr-x
2026-02-12 03:23
schemas
[ DIR ]
drwxr-xr-x
2026-02-12 03:23
styles
[ DIR ]
drwxr-xr-x
2026-02-12 03:24
templates
[ DIR ]
drwxr-xr-x
2026-02-12 03:23
tools
[ DIR ]
drwxr-xr-x
2026-02-12 03:23
.trash_restore
1.68
KB
-rw-r--r--
2026-03-21 09:05
README.md
4.79
KB
-rw-r--r--
2025-12-20 10:08
SECURITY.md
2.93
KB
-rw-r--r--
2025-12-20 10:08
config.TEMPLATE.inc.php
19.71
KB
-rw-r--r--
2025-12-20 10:08
config.inc.php
19.86
KB
-rw-r--r--
2025-12-26 15:41
cypress.config.js
1.65
KB
-rw-r--r--
2025-12-20 10:08
cypress.travis.env.json
170
B
-rw-r--r--
2025-12-20 10:08
daftar.html
317
B
-rw-r--r--
2026-02-12 03:24
error_log
2.5
MB
-rw-r--r--
2026-03-08 09:38
favicon.ico
1.12
KB
-rw-r--r--
2025-12-20 10:08
index.php
554
B
-rw-r--r--
2025-12-20 10:08
jsconfig.json
202
B
-rw-r--r--
2025-12-20 10:08
phpdoc.dist.xml
939
B
-rw-r--r--
2025-12-20 10:08
schemaspy.properties
344
B
-rw-r--r--
2025-12-20 10:08
vite.config.frontend.js
1.65
KB
-rw-r--r--
2025-12-20 10:08
vite.config.js
3.15
KB
-rw-r--r--
2025-12-20 10:08
Save
Rename
/** * As starting point, this is just to build vue runtime, which can be requested for Reader UI #11468 */ import {defineConfig} from 'vite'; import Vue from '@vitejs/plugin-vue'; import path from 'path'; export default defineConfig(({mode}) => { // its very unclear how the plugin-vue is handling inProduction option // in any case its still heavily relying on NODE_ENV, thats why its being set // so for example the devtools support is enabled in development mode process.env.NODE_ENV = mode; return { plugins: [ Vue({ isProduction: mode === 'production', }), ], publicDir: false, resolve: { alias: { '@': path.resolve(__dirname, 'lib/ui-library/src'), // use vue version with template compiler vue: 'vue/dist/vue.esm-bundler.js', }, // https://github.com/vitejs/vite/discussions/15906 dedupe: ['pinia', 'vue'], }, build: { sourcemap: mode === 'development' ? 'inline' : false, target: ['chrome66', 'edge79', 'firefox67', 'safari12'], emptyOutDir: false, cssCodeSplit: false, rollupOptions: { input: { build: './js/load_frontend.js', }, output: { format: 'iife', // Set the format to IIFE entryFileNames: 'js/build_frontend.js', assetFileNames: (assetInfo) => { const info = assetInfo.name.split('.'); const extType = info[info.length - 1]; if (/\.(css)$/.test(assetInfo.name)) { return 'styles/build_frontend.css'; } return `[name].${extType}`; }, // Provide global variables to use in the UMD build // for externalized deps globals: { vue: 'pkp.Vue', }, }, }, outDir: path.resolve(__dirname), }, }; });