1 Star 0 Fork 3

sunsunboy/Sheyang_GovHotline_Web

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
webpack.config.js 1.40 KB
一键复制 编辑 原始数据 按行查看 历史
const path = require('path')
const fs = require('fs')
const {AutoWebPlugin} = require('web-webpack-plugin')
const ExtractTextPlugin = require('extract-text-webpack-plugin')
const autoPlugin = new AutoWebPlugin(
//所有页面的入口目录
'./src/pages', {
//所有页面采用的模版文件
template: './src/template.html',
commonsChunk: {
name: 'common', // 必填属性,输出的文件名称
minChunks: 4, // 来自 CommonsChunkPlugin 插件
},
entry: null
})
module.exports = {
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'js/[name].js'
},
entry: autoPlugin.entry(),
module: {
rules: [
{
test: /\.js$/,
// cacheDirectory 缓存babel编译结果加快重新编译速度
loader: 'babel-loader?cacheDirectory',
// 只命中src目录里的js文件,加快webpack搜索速度
include: path.resolve(__dirname, 'src')
}, {
test: /\.css$/,
loader: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: 'css-loader'
})
}, {
test: /\.(gif|png|jpe?g|eot|woff|ttf|svg|pdf)$/,
loader: 'file-loader',
options: {
name: 'img/[name]_[hash].[ext]'
}
}, {
test: /\.art$/,
loader: "art-template-loader",
options: {}
}
]
},
plugins: [
new ExtractTextPlugin('css/[name].css'),
autoPlugin
]
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/suntony/Sheyang_GovHotline_Web.git
git@gitee.com:suntony/Sheyang_GovHotline_Web.git
suntony
Sheyang_GovHotline_Web
Sheyang_GovHotline_Web
master

搜索帮助