-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.mix.js
48 lines (42 loc) · 1.01 KB
/
webpack.mix.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/* global require, __dirname */
const mix = require('laravel-mix');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const { resolve } = require('path');
const vendor = [
'vue',
];
const webpackConfig = {
devServer: {
overlay: true,
contentBase: 'dist',
},
output: {
publicPath: '',
},
resolve: {
alias: {
'~': resolve(__dirname, 'src'),
},
},
plugins: [
new CleanWebpackPlugin({
cleanOnceBeforeBuildPatterns: [
'*',
'!.gitignore',
],
}),
new HtmlWebpackPlugin({
template: resolve(__dirname, 'src/index.html'),
}),
],
};
mix
.webpackConfig(webpackConfig)
.js('src/js/main.js', 'dist')
.copyDirectory('src/assets', `dist/assets`)
.extract(vendor)
.setPublicPath('dist')
.setResourceRoot('/')
.sourceMaps(false)
.disableNotifications();