https://github.com/ldyken53/TVCG-progiso
Tip revision: f93ee0c2285e5a4cfe5962a28ceb12cf0ce15352 authored by Landon Dyken on 17 October 2024, 22:37:18 UTC
Update README.md
Update README.md
Tip revision: f93ee0c
webpack.config.js
const HtmlWebpackPlugin = require("html-webpack-plugin");
const path = require("path");
module.exports = {
entry: "./src/app.js",
mode: "development",
output: {
filename: "main.js",
path: path.resolve(__dirname, "dist"),
},
module: {
rules: [
{
test: /\.(png|jpg|jpeg)$/i,
type: "asset/resource",
},
{
// Embed your WGSL files as strings
test: /\.wgsl$/i,
type: "asset/source",
}
]
},
plugins: [new HtmlWebpackPlugin({
template: "./index.html",
})],
};
