1 Star 0 Fork 0

Tangent/lifeRestart

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
webpack.config.cjs 1.21 KB
一键复制 编辑 原始数据 按行查看 历史
const path = require('path');
module.exports = {
mode: 'production',
entry: './src/index.js',
devtool: 'eval-cheap-module-source-map',
devServer: {
static: [
{
directory: path.join(__dirname, 'data'),
publicPath: '/data',
},
{
directory: path.join(__dirname, 'public'),
publicPath: '/public',
},
{
directory: path.join(__dirname, 'view'),
publicPath: '/view',
},
{
directory: path.join(__dirname, 'src'),
publicPath: '/src',
},
{
directory: path.join(__dirname, 'lib'),
publicPath: '/lib',
}
],
},
output: {
path: path.resolve(__dirname, 'public'),
filename: 'bundle.js',
clean: true,
},
// resolve: {
// extensions: ['.js'],
// },
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",
}
]
]
}
}
}]
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tangentor/lifeRestart.git
git@gitee.com:tangentor/lifeRestart.git
tangentor
lifeRestart
lifeRestart
master

搜索帮助