2018-02-26 19:50:13 +00:00
|
|
|
const webpack = require('webpack');
|
2018-08-21 20:09:41 +00:00
|
|
|
const path = require('path');
|
2020-07-10 12:45:35 +00:00
|
|
|
const CopyWebpackPlugin = require('copy-webpack-plugin')
|
2018-08-21 20:09:41 +00:00
|
|
|
|
2018-06-15 20:51:42 +00:00
|
|
|
if (process.env.NODE_ENV === 'development') {
|
|
|
|
require('dotenv').config();
|
|
|
|
}
|
2016-05-03 04:09:16 +00:00
|
|
|
|
2019-08-28 20:08:40 +00:00
|
|
|
|
|
|
|
// react hmr being fucked up has to do with the multiple entries!!! cool.
|
|
|
|
module.exports = {
|
|
|
|
mode: 'development',
|
2018-02-26 19:50:13 +00:00
|
|
|
devtool: 'cheap-module-eval-source-map',
|
|
|
|
entry: {
|
2018-05-03 00:34:03 +00:00
|
|
|
app: [
|
2019-06-05 16:05:31 +00:00
|
|
|
'core-js/modules/es6.promise',
|
|
|
|
'core-js/modules/es6.array.iterator',
|
2018-02-26 19:50:13 +00:00
|
|
|
'webpack-hot-middleware/client',
|
2018-05-03 00:34:03 +00:00
|
|
|
'react-hot-loader/patch',
|
2018-02-26 19:50:13 +00:00
|
|
|
'./client/index.jsx',
|
2016-11-08 23:11:12 +00:00
|
|
|
],
|
2019-08-28 20:08:40 +00:00
|
|
|
previewScripts: [
|
|
|
|
path.resolve(__dirname, '../client/utils/previewEntry.js')
|
2016-11-08 23:11:12 +00:00
|
|
|
]
|
|
|
|
},
|
2016-05-03 04:09:16 +00:00
|
|
|
output: {
|
2018-05-04 20:36:59 +00:00
|
|
|
path: `${__dirname}`,
|
2019-08-28 20:08:40 +00:00
|
|
|
filename: '[name].js',
|
2018-05-04 20:36:59 +00:00
|
|
|
publicPath: '/'
|
2016-05-03 04:09:16 +00:00
|
|
|
},
|
|
|
|
resolve: {
|
2017-11-06 21:19:43 +00:00
|
|
|
extensions: ['.js', '.jsx'],
|
2016-11-08 23:11:12 +00:00
|
|
|
modules: [
|
|
|
|
'client',
|
2016-11-16 18:12:36 +00:00
|
|
|
'node_modules'
|
2016-11-08 23:11:12 +00:00
|
|
|
]
|
2016-05-03 04:09:16 +00:00
|
|
|
},
|
2018-02-26 19:50:13 +00:00
|
|
|
plugins: [
|
2016-06-22 22:36:04 +00:00
|
|
|
new webpack.HotModuleReplacementPlugin(),
|
|
|
|
new webpack.DefinePlugin({
|
|
|
|
'process.env': {
|
2018-08-24 21:41:23 +00:00
|
|
|
NODE_ENV: JSON.stringify('development')
|
2016-06-22 22:36:04 +00:00
|
|
|
}
|
2020-07-10 12:45:35 +00:00
|
|
|
}),
|
|
|
|
new CopyWebpackPlugin({
|
|
|
|
patterns: [
|
|
|
|
{from: path.resolve(__dirname, '../translations/locales') , to: path.resolve(__dirname, 'locales')}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
)
|
2016-05-03 04:09:16 +00:00
|
|
|
],
|
|
|
|
module: {
|
2018-05-03 00:34:03 +00:00
|
|
|
rules: [
|
2016-05-03 04:09:16 +00:00
|
|
|
{
|
2016-06-27 21:40:16 +00:00
|
|
|
test: /\.jsx?$/,
|
2016-05-03 04:09:16 +00:00
|
|
|
exclude: [/node_modules/, /.+\.config.js/],
|
2018-05-03 00:34:03 +00:00
|
|
|
use: [{
|
|
|
|
loader: 'babel-loader',
|
|
|
|
options: {
|
|
|
|
cacheDirectory: true,
|
|
|
|
plugins: ['react-hot-loader/babel'],
|
2018-10-03 01:03:33 +00:00
|
|
|
}
|
2018-05-03 00:34:03 +00:00
|
|
|
}, {
|
|
|
|
loader: 'eslint-loader'
|
|
|
|
}]
|
2018-05-09 00:57:16 +00:00
|
|
|
// use: {
|
|
|
|
// loader: 'babel-loader',
|
|
|
|
// options: {
|
|
|
|
// cacheDirectory: true,
|
|
|
|
// plugins: ['react-hot-loader/babel'],
|
|
|
|
// }
|
|
|
|
// }
|
2016-05-03 04:09:16 +00:00
|
|
|
},
|
2016-05-03 20:13:04 +00:00
|
|
|
{
|
2018-07-30 16:20:57 +00:00
|
|
|
test: /main\.scss$/,
|
2018-10-03 01:03:33 +00:00
|
|
|
use: ['style-loader', 'css-loader', 'sass-loader']
|
2016-05-11 17:19:37 +00:00
|
|
|
},
|
|
|
|
{
|
2020-04-29 22:34:37 +00:00
|
|
|
test: /\.(mp3)$/,
|
2018-10-03 01:03:33 +00:00
|
|
|
use: 'file-loader'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.(png)$/,
|
|
|
|
use: {
|
|
|
|
loader: 'file-loader',
|
|
|
|
options: {
|
|
|
|
name: '[name].[ext]',
|
|
|
|
outputPath: 'images/'
|
|
|
|
}
|
|
|
|
}
|
2016-08-18 18:22:47 +00:00
|
|
|
},
|
|
|
|
{
|
2020-04-29 22:34:37 +00:00
|
|
|
test: /fonts\/.*\.(eot|ttf|woff|woff2)$/,
|
2018-10-03 01:03:33 +00:00
|
|
|
use: 'file-loader'
|
2018-05-15 19:10:24 +00:00
|
|
|
},
|
2020-04-29 22:34:37 +00:00
|
|
|
{
|
|
|
|
test: /\.svg$/,
|
|
|
|
oneOf: [
|
|
|
|
{
|
|
|
|
resourceQuery: /byUrl/,
|
|
|
|
use: 'file-loader'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
use: {
|
|
|
|
loader: '@svgr/webpack',
|
|
|
|
options: {
|
|
|
|
svgoConfig: {
|
|
|
|
plugins: {
|
|
|
|
removeViewBox: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2018-05-15 19:10:24 +00:00
|
|
|
{
|
2018-07-30 16:20:57 +00:00
|
|
|
test: /_console-feed.scss/,
|
2018-10-03 01:03:33 +00:00
|
|
|
use: {
|
|
|
|
loader: 'sass-extract-loader',
|
|
|
|
options: {
|
|
|
|
plugins: [{ plugin: 'sass-extract-js', options: { camelCase: false } }]
|
|
|
|
}
|
2018-07-30 16:20:57 +00:00
|
|
|
}
|
2016-05-03 20:13:04 +00:00
|
|
|
}
|
2016-05-03 04:09:16 +00:00
|
|
|
],
|
|
|
|
},
|
2019-08-28 20:08:40 +00:00
|
|
|
};
|