Last active
August 4, 2021 01:33
-
-
Save sl-digital/fbadce0fd33091a25c853773ba0ae31e to your computer and use it in GitHub Desktop.
Webpack Config File for Laravel/Vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//================================================================================= | |
// WEBPACK MODULES | |
//================================================================================= | |
const ora = require('ora'); | |
const path = require('path'); | |
const webpack = require('webpack'); | |
//================================================================================= | |
// WEBPACK OUTPUT PATHS | |
//================================================================================= | |
const APP_PATHS = { | |
'entryAbs' : path.join(__dirname, 'resources/assets/js/app.js'), | |
'publicAbs' : path.join(__dirname, 'public/assets'), | |
'public' : '/assets/', | |
'js' : 'js/[name].js', | |
'css' : 'css/[name].css', | |
'img' : 'img/[name].[ext]', | |
'fonts' : 'fonts/[name].[ext]' | |
}; | |
//================================================================================= | |
// WEBPACK PLUGINS | |
//================================================================================= | |
const ExtractTextPlugin = require('extract-text-webpack-plugin'); | |
const OptimizeCSSAssets = require('optimize-css-assets-webpack-plugin'); | |
const FriendlyErrorsWebpack = require('friendly-errors-webpack-plugin'); | |
const ExtractCSSPlugin = new ExtractTextPlugin({ | |
filename: APP_PATHS.css, | |
disable: false, | |
allChunks: true | |
}); | |
const UglifyPLugin = new webpack.optimize.UglifyJsPlugin({ | |
compress: { | |
warnings: false | |
}, | |
sourceMap: true | |
}); | |
const OptimizeCSSPlugin = new OptimizeCSSAssets({ | |
cssProcessorOptions: { | |
safe: true | |
} | |
}); | |
const NamedModulesPlugin = new webpack.NamedModulesPlugin(); | |
const FriendlyErrorsWebpackPlugin = new FriendlyErrorsWebpack(); | |
//================================================================================= | |
// WEBPACK CONFIG | |
//================================================================================= | |
const config = { | |
entry: { | |
"app": APP_PATHS.entryAbs | |
}, | |
output: { | |
path: APP_PATHS.publicAbs, | |
filename: APP_PATHS.js, | |
publicPath: APP_PATHS.public | |
}, | |
/* Make sure Vue is built from the correct source */ | |
resolve: { | |
alias: { | |
vue: 'vue/dist/vue.js' | |
} | |
}, | |
module: { | |
loaders: [ | |
/* Parse JS and React files with Babel */ | |
{ | |
test: /\.(js|jsx)$/, | |
include: path.resolve(__dirname, 'resources/assets'), | |
use: [{ | |
loader: 'babel-loader', | |
options: { | |
presets: ["es2015","stage-2"] | |
} | |
}] | |
}, | |
/* Parse Vue files with vue-loader and extract CSS */ | |
{ | |
test: /\.vue$/, | |
loader: 'vue-loader', | |
options: { | |
loaders: { | |
css: ExtractCSSPlugin.extract([ | |
'css-loader', | |
'postcss-loader', | |
'sass-loader' | |
]) | |
}, | |
fallbackLoader: 'vue-style-loader' | |
} | |
}, | |
/* Parse any plain CSS files and extract CSS */ | |
{ | |
test: /\.css$/, | |
use: ExtractCSSPlugin.extract([ | |
'style-loader', | |
'css-loader', | |
'postcss-loader' | |
]) | |
}, | |
/* Parse any SASS files and extract CSS */ | |
{ | |
test: /\.(scss|sass)$/, | |
use: ExtractCSSPlugin.extract([ | |
'css-loader', | |
'postcss-loader', | |
'sass-loader' | |
]) | |
}, | |
/* Relocate large images to the IMG directory */ | |
{ | |
test: /\.(png|jpe?g|gif|svg)$/, | |
use: [{ | |
loader: 'url-loader', | |
options: { | |
limit: 10000, | |
name: APP_PATHS.img | |
} | |
}] | |
}, | |
/* Relocate fonts to the FONTS directory */ | |
{ | |
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/, | |
use: [{ | |
loader: 'url-loader', | |
options: { | |
limit: 10000, | |
name: APP_PATHS.fonts | |
} | |
}] | |
} | |
] | |
}, | |
plugins: [ | |
UglifyPLugin, | |
ExtractCSSPlugin, | |
OptimizeCSSPlugin, | |
NamedModulesPlugin, | |
FriendlyErrorsWebpackPlugin | |
], | |
/* Enable file watching based on NODE_ENV */ | |
watch: false, | |
watchOptions: { | |
aggregateTimeout: 300, | |
poll: 1000, | |
ignored: /node_modules/ | |
} | |
} | |
//================================================================================= | |
// WEBPACK EXPORT | |
//================================================================================= | |
module.exports = config; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment