-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
64 lines (62 loc) · 1.74 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
const path = require('path');
const VueLoaderPlugin = require('vue-loader/lib/plugin');
const ManifestPlugin = require('webpack-manifest-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
module.exports = (env, argv) => {
const isProduction = argv.mode === 'production';
return {
context: path.resolve(__dirname, 'frontend/packs'),
entry: {
javascript: './main.js',
stylesheet: './application.scss'
},
output: {
path: path.resolve(__dirname, 'public/packs'),
filename: isProduction ? '[name]-[contentHash].js' : '[name]-[hash].js',
},
module: {
rules: [
{
test: /\.js$/,
include: path.resolve(__dirname, 'app'),
use: 'babel-loader',
},
{ test: /\.(css|scss|sass)$/, use: [MiniCssExtractPlugin.loader,'css-loader','sass-loader']},
{
test: /\.(png|jpe?g|gif|svg|woff|woff2|ttf|eot|ico)$/,
use: [
{
loader: 'file-loader',
options: {
outputPath: 'images/',
name: '[name].[ext]',
},
},
],
},
{
test: /\.vue$/,
exclude: /node_modules/,
loader: 'vue-loader',
options: {
extractCSS: true,
},
},
],
},
plugins: [
new VueLoaderPlugin(),
new ManifestPlugin(),
new MiniCssExtractPlugin({filename: '[name]-[contentHash].css'}),
],
devServer: {
host: '0.0.0.0',
publicPath: 'http://0.0.0.0:3035/public/packs/',
historyApiFallback: true,
disableHostCheck: true,
// inline: false, //(デフォルトがtrue)
// hot: true,
port: 3035,
},
};
}