2020-09-25 19:21:26 +00:00
|
|
|
const webpack = require('webpack');
|
2020-09-08 14:52:31 +00:00
|
|
|
const path = require('path');
|
2020-12-26 22:51:27 +00:00
|
|
|
const { VueLoaderPlugin } = require('vue-loader');
|
2020-09-08 14:52:31 +00:00
|
|
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
|
|
|
const autoprefixer = require('autoprefixer');
|
2019-06-03 03:31:38 +00:00
|
|
|
|
2020-09-08 14:52:31 +00:00
|
|
|
module.exports = {
|
2020-05-14 02:26:05 +00:00
|
|
|
entry: './assets/js/main.js',
|
|
|
|
output: {
|
|
|
|
filename: 'bundle.js',
|
|
|
|
path: path.join(__dirname, 'public/js'),
|
|
|
|
},
|
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
test: /\.vue$/,
|
|
|
|
include: [
|
|
|
|
path.resolve(__dirname, 'assets'),
|
|
|
|
],
|
|
|
|
loader: 'vue-loader',
|
|
|
|
options: {
|
|
|
|
preserveWhitespace: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.js$/,
|
|
|
|
exclude: /node_modules/,
|
|
|
|
use: [
|
|
|
|
{
|
|
|
|
loader: 'babel-loader',
|
|
|
|
options: {
|
|
|
|
babelrc: false,
|
|
|
|
plugins: [
|
|
|
|
'@babel/plugin-proposal-object-rest-spread',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'eslint-loader',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.scss$/,
|
|
|
|
use: [
|
|
|
|
MiniCssExtractPlugin.loader,
|
2020-12-26 22:51:27 +00:00
|
|
|
{
|
|
|
|
loader: 'css-loader',
|
|
|
|
options: {
|
|
|
|
sourceMap: true,
|
|
|
|
url: false,
|
|
|
|
},
|
|
|
|
},
|
2020-05-14 02:26:05 +00:00
|
|
|
{
|
|
|
|
loader: 'postcss-loader',
|
|
|
|
options: {
|
|
|
|
plugins: [autoprefixer],
|
|
|
|
sourceMap: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'sass-loader?sourceMap',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.svg/,
|
|
|
|
use: 'raw-loader',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
new VueLoaderPlugin(),
|
|
|
|
new MiniCssExtractPlugin({
|
|
|
|
filename: '../css/style.css',
|
|
|
|
}),
|
2020-09-25 19:21:26 +00:00
|
|
|
new webpack.DefinePlugin({
|
|
|
|
VERSION: JSON.stringify(process.env.npm_package_version),
|
|
|
|
}),
|
2020-05-14 02:26:05 +00:00
|
|
|
],
|
|
|
|
resolve: {
|
|
|
|
alias: {
|
|
|
|
theme: path.join(__dirname, 'assets/css/_theme.scss'),
|
2020-07-05 02:40:57 +00:00
|
|
|
breakpoints: path.join(__dirname, 'assets/css/_breakpoints.scss'),
|
2020-05-14 02:26:05 +00:00
|
|
|
config: path.join(__dirname, `assets/js/config/${process.env.NODE_ENV || 'default'}.js`),
|
2021-01-11 15:20:01 +00:00
|
|
|
vue: 'vue/dist/vue.esm-bundler.js',
|
2020-05-14 02:26:05 +00:00
|
|
|
},
|
|
|
|
},
|
2019-06-03 03:31:38 +00:00
|
|
|
};
|