meta: remove unnecessary variable

This commit is contained in:
Matilde Park 2021-01-05 19:24:51 -05:00
parent 2c0ecc6494
commit 113aad6db5

View File

@ -4,7 +4,7 @@ const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const MomentLocalesPlugin = require('moment-locales-webpack-plugin');
const webpack = require('webpack');
module.exports = (env) => return {
module.exports = {
mode: 'production',
entry: {
app: './src/index.js'
@ -66,7 +66,7 @@ module.exports = (env) => return {
output: {
filename: 'index.[contenthash].js',
path: path.resolve(__dirname, '../../arvo/app/landscape/js/bundle'),
publicPath: '/',
publicPath: '/'
},
optimization: {
minimize: true,