mirror of
https://github.com/VickScarlet/lifeRestart.git
synced 2025-07-15 16:52:39 +08:00
58 lines
1.2 KiB
JavaScript
58 lines
1.2 KiB
JavaScript
const path = require('path');
|
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
|
|
|
module.exports = {
|
|
mode: 'production',
|
|
entry: './src/index.js',
|
|
devtool: 'eval-cheap-module-source-map',
|
|
devServer: {
|
|
static: [
|
|
{
|
|
directory: path.join(__dirname, 'public'),
|
|
publicPath: '/public',
|
|
},
|
|
{
|
|
directory: path.join(__dirname, 'view'),
|
|
publicPath: '/view',
|
|
},
|
|
{
|
|
directory: path.join(__dirname, 'src'),
|
|
publicPath: '/src',
|
|
},
|
|
],
|
|
allowedHosts: "all",
|
|
},
|
|
output: {
|
|
path: path.resolve(__dirname, 'public/chunk'),
|
|
filename: '[name].[chunkhash:5].js',
|
|
clean: true,
|
|
},
|
|
plugins: [
|
|
new HtmlWebpackPlugin({
|
|
template: 'template/index.html',
|
|
filename: '../index.html',
|
|
}),
|
|
],
|
|
module: {
|
|
rules: [{
|
|
test: /\.js$/,
|
|
exclude: /node_modules/,
|
|
use: {
|
|
loader: 'babel-loader',
|
|
options: {
|
|
presets: [
|
|
[
|
|
'@babel/preset-env',
|
|
{
|
|
"targets": "> 0.25%, not dead",
|
|
"useBuiltIns": "usage",
|
|
"corejs": "3.8.3",
|
|
}
|
|
]
|
|
]
|
|
}
|
|
}
|
|
}]
|
|
}
|
|
};
|