forked from usetania/tania-core
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
135 lines (132 loc) · 3.65 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
const path = require('path');
const webpack = require('webpack');
const { VueLoaderPlugin } = require('vue-loader');
const SWPrecacheWebpackPlugin = require('sw-precache-webpack-plugin');
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const WebpackNodeExternal = require('webpack-node-externals');
const confJSON = require('./conf.json');
const isProduction = process.env.NODE_ENV === 'production';
module.exports = {
entry: {
bundle: ['./resources/js/app.js'],
},
output: {
path: path.resolve(__dirname, 'public'),
filename: '[name].[chunkhash].js',
chunkFilename: 'js/[name].[chunkhash].js',
publicPath: '/',
},
module: {
rules: [
{
test: /\.(html)$/,
use: {
loader: 'html-loader',
options: {
attrs: [':data-src'],
},
},
},
{
test: /\.vue$/,
use: 'vue-loader',
},
{
test: /\.hbs$/,
loader: 'handlebars-loader',
},
{
test: /\.pug$/,
oneOf: [
// this applies to `<template lang="pug">` in Vue components
{
resourceQuery: /^\?vue/,
use: ['pug-plain-loader'],
},
// this applies to pug imports inside JavaScript
{
use: ['raw-loader', 'pug-plain-loader'],
},
],
},
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
},
},
{
test: /\.(woff(2)|woff|eot|ttf|png|jpg|gif|svg)$/,
loader: 'file-loader',
options: {
name: '[name].[ext]?[hash]',
},
},
{
test: /\.(sa|sc)ss$/,
use: [{
loader: 'vue-style-loader',
}, {
loader: isProduction ? MiniCssExtractPlugin.loader : 'style-loader',
}, {
loader: 'css-loader',
}, {
loader: 'sass-loader',
}],
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader'],
},
],
},
plugins: [
new CleanWebpackPlugin('public/'),
// eslint-disable-next-line no-useless-escape
new webpack.ContextReplacementPlugin(/moment[\/\\]locale$/, /de|en|id/),
new SWPrecacheWebpackPlugin({
cacheId: 'tanibox',
dontCacheBustUrlsMatching: /\.\w{8}\./,
filename: 'service-worker.js',
staticFileGlobs: ['public/**/*.{js,html,css}'],
minify: true,
stripPrefix: 'public/',
}),
new VueLoaderPlugin(),
new BundleAnalyzerPlugin({
analyzerMode: 'static',
reportFilename: 'report.html',
defaultSizes: 'parsed',
openAnalyzer: false,
generateStatsFile: false,
statsFilename: 'stats.json',
statsOptions: null,
logLevel: 'info',
}),
new HtmlWebpackPlugin({
template: 'resources/index.hbs',
inject: true,
chunkSortMode: 'dependency',
}),
new MiniCssExtractPlugin({
// Options similar to the same options in webpackOptions.output
// both options are optional
filename: isProduction ? '[name].css' : '[name].[hash].css',
chunkFilename: isProduction ? '[id].css' : '[id].[hash].css',
}),
new webpack.DefinePlugin({
'process.env': {
CLIENT_ID: JSON.stringify(confJSON.client_id),
},
}),
],
};
// test specific setups
if (process.env.NODE_ENV === 'test') {
module.exports.externals = [WebpackNodeExternal()];
module.exports.devtool = 'inline-cheap-module-source-map';
}