You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1022 B

const path = require('path')
7 months ago
//__dirname,
module.exports = {
// entry: "./App.js",
entry: {
kpdl: './app/Views/kewilayahan/kytp/kpdl.js'
// peta: './app/Views/kewilayahan/peta/peta.js'
7 months ago
},
output: {
path: path.resolve('./app/Views/kewilayahan/dist'),
filename: '[name].js'
7 months ago
},
7 months ago
optimization: {
7 months ago
minimize: true
7 months ago
},
7 months ago
module: {
rules: [
{
exclude: /node_modules/,
use: {
loader: 'babel-loader',
7 months ago
options: {
presets: ['@babel/preset-react'],
plugins: ['@babel/plugin-proposal-optional-chaining', '@babel/plugin-proposal-nullish-coalescing-operator']
7 months ago
}
}
},
{
test: /\.css$/i,
// type: "asset"
use: ['style-loader', 'css-loader']
7 months ago
}
]
},
7 months ago
mode: 'production'
// mode: 'development'
// devServer: {
// static: {
// directory: path.join(__dirname, 'public/kpdl'),
// serveIndex: true
// },
// compress: false,
// port: 9000
// }
7 months ago
}