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.1
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 /
lms-client /
internals /
webpack /
[ HOME SHELL ]
Name
Size
Permission
Action
webpack.base.babel.js
3.86
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.dev.babel.js
/** * DEVELOPMENT WEBPACK CONFIGURATION */ const path = require('path'); const webpack = require('webpack'); const HtmlWebpackPlugin = require('html-webpack-plugin'); const CircularDependencyPlugin = require('circular-dependency-plugin'); const createStyledComponentsTransformer = require('typescript-plugin-styled-components') .default; const styledComponentsTransformer = createStyledComponentsTransformer(); const ErrorOverlayPlugin = require('error-overlay-webpack-plugin'); module.exports = require('./webpack.base.babel')({ mode: 'development', // Add hot reloading in development entry: [ 'react-hot-loader/patch', 'webpack-hot-middleware/client?reload=true', path.join(process.cwd(), 'app/app.tsx'), // Start with js/app.js ], // Don't use hashes in dev mode for better performance output: { filename: '[name].js', chunkFilename: '[name].chunk.js', }, optimization: { splitChunks: { chunks: 'all', }, }, // Add development plugins plugins: [ new ErrorOverlayPlugin(), new webpack.HotModuleReplacementPlugin(), // Tell webpack we want hot reloading new HtmlWebpackPlugin({ inject: true, // Inject all files that are generated by webpack, e.g. bundle.js template: 'app/index.html', }), new CircularDependencyPlugin({ exclude: /a\.js|node_modules/, // exclude node_modules failOnError: false, // show a warning when there is a circular dependency }), ], tsLoaders: [ { loader: 'babel-loader' }, // using babel after typescript transpiles to target es6 { loader: 'ts-loader', options: { transpileOnly: true, // fork-ts-checker-webpack-plugin is used for type checking logLevel: 'info', getCustomTransformers: () => ({ before: [styledComponentsTransformer], }), }, }, ], // Emit a source map for easier debugging // See https://webpack.js.org/configuration/devtool/#devtool devtool: 'cheap-module-source-map', performance: { hints: false, }, });
Close