BoostNote-App/webpack.config.ts
2019-12-19 09:09:56 +09:00

149 lines
3.5 KiB
TypeScript

import path from 'path'
import webpack from 'webpack'
import HtmlWebpackPlugin from 'html-webpack-plugin'
import express from 'express'
import ErrorOverlayPlugin from 'error-overlay-webpack-plugin'
import CopyPlugin from 'copy-webpack-plugin'
import TerserPlugin from 'terser-webpack-plugin'
module.exports = (env, argv) => {
const config = {
entry: [
'./src/index.tsx'
// the entry point of our app
],
output: {
filename: 'bundle.js',
// the output bundle
path: path.resolve(__dirname, 'compiled')
},
devtool: 'inline-source-map',
module: {
rules: [
{
test: /\.css$/i,
use: ['style-loader', 'css-loader']
},
{
test: /\.(png|jpe?g|gif|svg|eot|ttf|woff|woff2)$/i,
loader: 'url-loader',
options: {
limit: 8192
}
},
{
test: /\.tsx?$/,
use: [{ loader: 'ts-loader' }],
exclude: /node_modules/
},
{
test: /\.md$/,
use: [
{
loader: 'raw-loader'
}
]
}
]
},
plugins: [
new webpack.NamedModulesPlugin(),
// prints more readable module names in the browser console on HMR updates
new webpack.NoEmitOnErrorsPlugin(),
// do not emit compiled assets that include errors
new HtmlWebpackPlugin({
template: 'index.html'
}),
new ErrorOverlayPlugin(),
new webpack.EnvironmentPlugin([
'NODE_ENV',
'AMPLIFY_AUTH_IDENTITY_POOL_ID',
'AMPLIFY_AUTH_REGION',
'AMPLIFY_PINPOINT_APPID',
'AMPLIFY_PINPOINT_REGION',
'BOOST_NOTE_BASE_URL'
]),
new CopyPlugin([
{
from: path.join(__dirname, 'node_modules/codemirror/theme'),
to: 'app/codemirror/theme'
}
]),
new CopyPlugin([
{
from: path.join(__dirname, 'static'),
to: 'app/static'
}
])
],
devServer: {
host: 'localhost',
port: 3000,
historyApiFallback: {
index: '/app'
},
// respond to 404s with index.html
hot: true,
// enable HMR on the server
before: function(app, server) {
app.use(
'/app/codemirror/mode',
express.static(path.join(__dirname, 'node_modules/codemirror/mode'))
)
app.use(
'/app/codemirror/addon',
express.static(path.join(__dirname, 'node_modules/codemirror/addon'))
)
app.use(
'/app/codemirror/theme',
express.static(path.join(__dirname, 'node_modules/codemirror/theme'))
)
app.use('/app/static', express.static(path.join(__dirname, 'static')))
}
},
resolve: {
extensions: ['.tsx', '.ts', '.js']
},
node: {
fs: 'empty'
}
}
if (argv.mode === 'development') {
config.plugins.unshift(new webpack.HotModuleReplacementPlugin())
config.entry.unshift(
'react-hot-loader/patch',
'webpack-dev-server/client?http://localhost:3000',
'webpack/hot/only-dev-server'
)
;(config.output as any).publicPath = '/app'
}
if (argv.mode === 'production') {
;(config as any).optimization = {
minimize: true,
minimizer: [
new TerserPlugin({
terserOptions: {
keep_fnames: /Block|Value|Bool|BooleanLiteral|Null|NullLiteral|Literal|NumberLiteral|StringLiteral|RegexLiteral|Arr|Obj|Op|Parens/
}
})
]
}
}
return config
}