Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.216.95.250
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
node_modules /
laravel-mix /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
builder
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
components
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
tasks
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
webpackPlugins
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
Api.js
1.96
KB
-rw-r--r--
2021-02-04 21:24
Assert.js
1.97
KB
-rw-r--r--
2021-02-04 21:24
Dependencies.js
1.42
KB
-rw-r--r--
2021-02-04 21:24
Dispatcher.js
887
B
-rw-r--r--
2021-02-04 21:24
File.js
5.37
KB
-rw-r--r--
2021-02-04 21:24
FileCollection.js
2.52
KB
-rw-r--r--
2021-02-04 21:24
Manifest.js
2.95
KB
-rw-r--r--
2021-02-04 21:24
Mix.js
2.41
KB
-rw-r--r--
2021-02-04 21:24
Paths.js
920
B
-rw-r--r--
2021-02-04 21:24
StandaloneSass.js
3.77
KB
-rw-r--r--
2021-02-04 21:24
config.js
6.84
KB
-rw-r--r--
2021-02-04 21:24
helpers.js
1.04
KB
-rw-r--r--
2021-02-04 21:24
index.js
1.83
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
/* |-------------------------------------------------------------------------- | Welcome to Laravel Mix! |-------------------------------------------------------------------------- | | Laravel Mix provides a clean, fluent API for defining basic webpack | build steps for your Laravel application. Mix supports a variety | of common CSS and JavaScript pre-processors out of the box. | */ /** * We'll begin by pulling in a few globals that Mix often uses. */ require('./helpers'); require('dotenv').config(); global.path = require('path'); global.File = require('./File'); /** * This config object is what Mix will reference, when it's time * to dynamically build up your Webpack configuration object. */ global.Config = require('./config')(); global.Mix = new (require('./Mix'))(); /** * If we're working in a Laravel app, we'll explicitly * set the default public path, as a convenience. */ if (Mix.sees('laravel')) { Config.publicPath = 'public'; } /** * If the user activates hot reloading, with the --hot * flag, we'll record it as a file, so that Laravel * can detect it and update its mix() url paths. */ Mix.listen('init', () => { if (Mix.shouldHotReload()) { let http = process.argv.includes('--https') ? 'https' : 'http'; new File(path.join(Config.publicPath, 'hot')).write( http + '://' + Config.hmrOptions.host + ':' + Config.hmrOptions.port + '/' ); } }); /** * Mix exposes a simple, fluent API for activating many common build * steps that a typical project should require. Behind the scenes, * all calls to this fluent API will update the above config. */ let Api = require('./Api'); let api = new Api(); module.exports = api; module.exports.mix = api; // Deprecated. module.exports.config = Config;