wisemapping-frontend/packages/webapp/webpack.config.js

67 lines
1.7 KiB
JavaScript
Raw Normal View History

const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
2020-12-09 04:35:02 +01:00
const HtmlWebpackDynamicEnvPlugin = require('html-webpack-dynamic-env-plugin');
const webpack = require('webpack');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
2020-12-09 04:35:02 +01:00
module.exports = {
2020-12-07 01:31:48 +01:00
mode: 'development',
devtool: 'eval-source-map',
entry: {
app: path.join(__dirname, 'src', 'index.tsx')
},
target: 'web',
resolve: {
extensions: ['.ts', '.tsx', '.js', '.jsx']
},
module: {
rules: [
2020-12-07 01:31:48 +01:00
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: '/node_modules/'
},
{
test: /\.css$/,
use: ["style-loader", "css-loader"]
2020-12-07 01:31:48 +01:00
},
{
test: /\.(png|jpe?g|gif|svg)$/,
use: [{
loader: 'file-loader',
options: {
esModule: false,
}
}, ],
}
]
},
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist')
},
plugins: [
new CleanWebpackPlugin(),
new HtmlWebpackPlugin({
2020-12-09 04:35:02 +01:00
template: path.join(__dirname, 'public/index.html'),
templateParameters: {
2020-12-09 04:44:12 +01:00
PUBLIC_URL: process.env.PUBLIC_URL ? process.env.PUBLIC_URL : 'http://localhost:3000'
2020-12-09 04:35:02 +01:00
},
2020-12-07 01:31:48 +01:00
})
],
2020-12-07 01:31:48 +01:00
devServer: {
contentBase: path.join(__dirname, 'dist'),
compress: true,
port: 3000,
2020-12-09 04:44:12 +01:00
hot: true,
historyApiFallback: {
rewrites: [
{ from: /^\/c\//, to: '/index.html' }
]
}
2020-12-07 01:31:48 +01:00
}
}