-
Notifications
You must be signed in to change notification settings - Fork 5
/
webpack.config.js
47 lines (44 loc) · 1.23 KB
/
webpack.config.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
const { join } = require('path')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const VueLoaderPlugin = require('vue-loader/lib/plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const isProduction = process.env.NODE_ENV === 'production'
const src = join(__dirname, 'src')
module.exports = {
mode: isProduction ? 'production' : 'development',
entry: join(__dirname, 'src/main.js'),
output: {
path: join(__dirname, 'site'),
filename: 'js/[name].bundle.js',
chunkFilename: 'js/[id].[chunkhash].js'
},
resolve: {
extensions: ['.js', '.vue', '.json'],
alias: {
'@': src
}
},
module: {
rules: [
{ test: /\.js$/, include: src, loader: 'babel-loader' },
{ test: /\.vue$/, include: src, loader: 'vue-loader' },
{
test: /\.s?css$/,
include: src,
use: [
isProduction ? MiniCssExtractPlugin.loader : 'vue-style-loader',
{
loader: 'css-loader',
options: { importLoaders: 1 }
},
'sass-loader'
]
}
]
},
plugins: [
new VueLoaderPlugin(),
new HtmlWebpackPlugin({ template: './src/index.html' }),
...(isProduction ? [new MiniCssExtractPlugin()] : [])
]
}