57 lines
1.2 KiB
JavaScript
57 lines
1.2 KiB
JavaScript
const path = require("path");
|
|
const HtmlWebpackPlugin = require("html-webpack-plugin");
|
|
|
|
const dist = path.resolve(__dirname, "dist");
|
|
const WasmPackPlugin = require("@wasm-tool/wasm-pack-plugin");
|
|
|
|
var mainConfig = {
|
|
mode: "development",
|
|
entry: "./src/js/index.js",
|
|
output: {
|
|
path: dist,
|
|
filename: "bundle.js",
|
|
},
|
|
devServer: {
|
|
static: dist,
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.css$/,
|
|
use: ["style-loader", "css-loader"],
|
|
},
|
|
{
|
|
test: /\.(jpg|png|svg|gif)$/,
|
|
type: "asset/resource",
|
|
},
|
|
// {
|
|
// test: /\.(png|svg|jpg|gif)$/,
|
|
// use: ["file-loader"],
|
|
// },
|
|
],
|
|
},
|
|
plugins: [
|
|
new HtmlWebpackPlugin({
|
|
template: "index.html",
|
|
}),
|
|
|
|
new WasmPackPlugin({
|
|
crateDirectory: path.resolve(__dirname, "webclient"),
|
|
// WasmPackPlugin defaults to compiling in "dev" profile. To change that, use forceMode: 'release':
|
|
forceMode: "release",
|
|
}),
|
|
],
|
|
experiments: {
|
|
asyncWebAssembly: true,
|
|
},
|
|
devServer: {
|
|
proxy: [
|
|
{
|
|
context: ["/api"],
|
|
target: "http://localhost:3000",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
module.exports = [mainConfig];
|