1 Star 2 Fork 2

魏巍/redux-blog

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
webpack.config.js 902 Bytes
一键复制 编辑 原始数据 按行查看 历史
魏巍 提交于 2018-05-13 12:37 . finished publish artice
const path = require('path');
var webpack = require('webpack');
const config = {
entry: ['babel-polyfill','./src/app.js'],
output: {
path: path.resolve(__dirname, 'build'),
filename: 'main.js'
},
mode: 'production',
module: {
rules: [
{
test: /\.js$/,
include: /(src)/,
use: {
loader: 'babel-loader',
}
},
{
test: /\.css$/,
use: [ 'style-loader', 'css-loader']
},
{
test: /\.scss$/,
use: [{
loader: 'style-loader',
}, {
loader: 'css-loader',
}, {
loader: 'sass-loader',
}]
}
],
},
plugins: [
new webpack.HotModuleReplacementPlugin()
],
devServer: {
contentBase: path.join(__dirname, "build"),
compress: true,
port: 9000,
open: true,
inline: true
}
};
module.exports = config;
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wewin11235/redux-blog.git
git@gitee.com:wewin11235/redux-blog.git
wewin11235
redux-blog
redux-blog
master

搜索帮助