1 Star 0 Fork 0

Vue.js/vue-curated-client

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
webpack.config.js 2.88 KB
一键复制 编辑 原始数据 按行查看 历史
Guillaume Chau 提交于 2018-03-02 19:46 +08:00 . Fix production mode + public folder
const path = require('path')
const webpack = require('webpack')
const HtmlPlugin = require('html-webpack-plugin')
const CopyPlugin = require('copy-webpack-plugin')
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
const momentLocales = /en/
const outputPath = path.resolve(__dirname, './dist')
module.exports = {
entry: './src/main.js',
output: {
path: outputPath,
publicPath: '/',
filename: 'build.js',
},
module: {
rules: [
{
test: /\.vue$/,
loader: 'vue-loader',
options: {
loaders: {
// Since sass-loader (weirdly) has SCSS as its default parse mode, we map
// the "scss" and "sass" values for the lang attribute to the right configs here.
// other preprocessors should work out of the box, no loader config like this nessessary.
'scss': 'vue-style-loader!css-loader!sass-loader',
'sass': 'vue-style-loader!css-loader!sass-loader?indentedSyntax',
},
// other vue-loader options go here
},
},
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/,
},
{
test: /\.(png|jpg|gif|svg)$/,
loader: 'file-loader',
options: {
name: '[name].[ext]?[hash]',
},
},
{
test: /\.css$/,
loader: 'style-loader!css-loader',
},
{
test: /\.(graphql|gql)$/,
exclude: /node_modules/,
loader: 'graphql-tag/loader',
},
],
},
resolve: {
modules: ['src', 'node_modules'],
extensions: ['.js', '.json', '.vue'],
/* alias: {
'vue$': 'vue/dist/vue.common.js'
} */
},
devServer: {
historyApiFallback: true,
noInfo: true,
},
performance: {
hints: false,
},
devtool: '#eval-source-map',
plugins: [
new HtmlPlugin({
template: 'src/index.html',
}),
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify(process.env.NODE_ENV),
GRAPHQL_URL: JSON.stringify(process.env.GRAPHQL_URL || 'https://vue-curated-api.now.sh/graphql'),
},
}),
new webpack.ContextReplacementPlugin(/moment[/\\]locale$/, momentLocales),
],
}
if (process.env.NODE_ENV === 'production') {
module.exports.devtool = '#source-map'
// http://vue-loader.vuejs.org/en/workflow/production.html
module.exports.plugins = (module.exports.plugins || []).concat([
new webpack.optimize.UglifyJsPlugin({
sourceMap: true,
compress: {
warnings: false,
},
}),
new webpack.LoaderOptionsPlugin({
minimize: true,
}),
new CopyPlugin([
{
from: path.resolve(__dirname, './public'),
to: outputPath,
},
]),
])
}
if (process.env.ANALYZE === 'on') {
module.exports.plugins = (module.exports.plugins || []).concat([
new BundleAnalyzerPlugin(),
])
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/vuejs/vue-curated-client.git
git@gitee.com:vuejs/vue-curated-client.git
vuejs
vue-curated-client
vue-curated-client
dev

搜索帮助