141 lines
2.9 KiB
JavaScript
141 lines
2.9 KiB
JavaScript
const webpack = require('webpack');
|
|
const path = require('path');
|
|
|
|
if (process.env.NODE_ENV === 'development') {
|
|
require('dotenv').config();
|
|
}
|
|
|
|
module.exports = [{
|
|
devtool: 'cheap-module-eval-source-map',
|
|
entry: {
|
|
app: [
|
|
'webpack-hot-middleware/client',
|
|
'react-hot-loader/patch',
|
|
'./client/index.jsx',
|
|
],
|
|
vendor: [
|
|
'react',
|
|
'react-dom'
|
|
]
|
|
},
|
|
output: {
|
|
path: `${__dirname}`,
|
|
filename: 'app.js',
|
|
publicPath: '/'
|
|
},
|
|
resolve: {
|
|
extensions: ['.js', '.jsx'],
|
|
modules: [
|
|
'client',
|
|
'node_modules'
|
|
]
|
|
},
|
|
plugins: [
|
|
new webpack.HotModuleReplacementPlugin(),
|
|
new webpack.optimize.CommonsChunkPlugin({
|
|
name: 'vendor',
|
|
minChunks: Infinity,
|
|
filename: 'vendor.js',
|
|
}),
|
|
new webpack.DefinePlugin({
|
|
'process.env': {
|
|
NODE_ENV: JSON.stringify('development')
|
|
}
|
|
})
|
|
],
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.jsx?$/,
|
|
exclude: [/node_modules/, /.+\.config.js/],
|
|
use: [{
|
|
loader: 'babel-loader',
|
|
options: {
|
|
cacheDirectory: true,
|
|
plugins: ['react-hot-loader/babel'],
|
|
}
|
|
}, {
|
|
loader: 'eslint-loader'
|
|
}]
|
|
// use: {
|
|
// loader: 'babel-loader',
|
|
// options: {
|
|
// cacheDirectory: true,
|
|
// plugins: ['react-hot-loader/babel'],
|
|
// }
|
|
// }
|
|
},
|
|
{
|
|
test: /main\.scss$/,
|
|
use: ['style-loader', 'css-loader', 'sass-loader']
|
|
},
|
|
{
|
|
test: /\.(svg|mp3)$/,
|
|
use: 'file-loader'
|
|
},
|
|
{
|
|
test: /\.(png)$/,
|
|
use: {
|
|
loader: 'file-loader',
|
|
options: {
|
|
name: '[name].[ext]',
|
|
outputPath: 'images/'
|
|
}
|
|
}
|
|
},
|
|
{
|
|
test: /fonts\/.*\.(eot|svg|ttf|woff|woff2)$/,
|
|
use: 'file-loader'
|
|
},
|
|
{
|
|
test: /_console-feed.scss/,
|
|
use: {
|
|
loader: 'sass-extract-loader',
|
|
options: {
|
|
plugins: [{ plugin: 'sass-extract-js', options: { camelCase: false } }]
|
|
}
|
|
}
|
|
}
|
|
],
|
|
},
|
|
},
|
|
{
|
|
entry: path.resolve(__dirname, '../client/utils/previewEntry.js'),
|
|
target: 'web',
|
|
output: {
|
|
path: `${__dirname}`,
|
|
filename: 'previewScripts.js',
|
|
publicPath: '/'
|
|
},
|
|
resolve: {
|
|
extensions: ['*', '.js', '.jsx'],
|
|
modules: [
|
|
'client',
|
|
'node_modules',
|
|
],
|
|
},
|
|
module: {
|
|
loaders: [
|
|
{
|
|
test: /\.js$/,
|
|
exclude: /node_modules/,
|
|
loader: 'babel-loader',
|
|
query: {
|
|
presets: [
|
|
'react',
|
|
'env',
|
|
'stage-0',
|
|
],
|
|
plugins: [
|
|
[
|
|
'babel-plugin-webpack-loaders', {
|
|
'config': path.resolve(__dirname, './config.babel.js'),
|
|
'verbose': false
|
|
}
|
|
]
|
|
]
|
|
},
|
|
}
|
|
],
|
|
},
|
|
}]
|