-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpackAnaylzer.js
43 lines (39 loc) · 1.03 KB
/
webpackAnaylzer.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// // webpack.config.js
// var path = require('path');
// const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
// module.exports = {
// entry: './frontend/strife.jsx',
// output: {
// path: path.resolve(__dirname, 'app', 'assets', 'javascripts'),
// filename: './bundle.js',
// },
// module: {
// rules: [
// {
// test: [/\.jsx?$/],
// exclude: /(node_modules)/,
// use: {
// loader: 'babel-loader',
// options: {
// presets: ['@babel/env', '@babel/react']
// }
// },
// },
// {
// test: /\.(jpe?g|png|gif|woff|woff2|eot|ttf|svg)(\?[a-z0-9=.]+)?$/,
// loader: 'url-loader'
// }
// ]
// },
// devtool: 'source-map',
// resolve: {
// extensions: ['.js', '.jsx', '*'],
// alias: {
// '@mui/material': '@mui/material/modern',
// "@mui/styled-engine": "@mui/styled-engine-sc"
// }
// },
// plugins: [
// new BundleAnalyzerPlugin()
// ],
// };