mirror of
https://github.com/ilyakooo0/urbit.git
synced 2025-01-05 22:03:50 +03:00
68 lines
1.6 KiB
JavaScript
68 lines
1.6 KiB
JavaScript
|
const path = require('path');
|
||
|
// const HtmlWebpackPlugin = require('html-webpack-plugin');
|
||
|
// const { CleanWebpackPlugin } = require('clean-webpack-plugin');
|
||
|
const urbitrc = require('./urbitrc');
|
||
|
|
||
|
module.exports = {
|
||
|
mode: 'production',
|
||
|
entry: {
|
||
|
app: './src/index.js'
|
||
|
},
|
||
|
module: {
|
||
|
rules: [
|
||
|
{
|
||
|
test: /\.js?$/,
|
||
|
use: {
|
||
|
loader: 'babel-loader',
|
||
|
options: {
|
||
|
presets: ['@babel/preset-env', '@babel/preset-react'],
|
||
|
plugins: [
|
||
|
'@babel/plugin-proposal-object-rest-spread',
|
||
|
'@babel/plugin-proposal-optional-chaining'
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
exclude: /node_modules/
|
||
|
},
|
||
|
{
|
||
|
test: /\.s[ac]ss$/i,
|
||
|
use: [
|
||
|
// Creates `style` nodes from JS strings
|
||
|
'style-loader',
|
||
|
// Translates CSS into CommonJS
|
||
|
'css-loader',
|
||
|
// Compiles Sass to CSS
|
||
|
'sass-loader'
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
resolve: {
|
||
|
extensions: ['.js']
|
||
|
},
|
||
|
devtool: 'inline-source-map',
|
||
|
// devServer: {
|
||
|
// contentBase: path.join(__dirname, './'),
|
||
|
// hot: true,
|
||
|
// port: 9000,
|
||
|
// historyApiFallback: true
|
||
|
// },
|
||
|
plugins: [
|
||
|
// new CleanWebpackPlugin(),
|
||
|
// new HtmlWebpackPlugin({
|
||
|
// title: 'Hot Module Replacement',
|
||
|
// template: './public/index.html',
|
||
|
// }),
|
||
|
],
|
||
|
output: {
|
||
|
filename: 'index.js',
|
||
|
chunkFilename: 'index.js',
|
||
|
path: path.resolve(urbitrc.URBIT_PIERS[0] + '/app/launch/', 'js'),
|
||
|
publicPath: '/'
|
||
|
},
|
||
|
optimization: {
|
||
|
minimize: true,
|
||
|
usedExports: true
|
||
|
}
|
||
|
};
|