mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-23 18:08:12 +08:00
Rename project structure with /core and /client
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
const path = require("path");
|
||||
const HtmlWebpackPlugin = require("html-webpack-plugin");
|
||||
const WasmPackPlugin = require("@wasm-tool/wasm-pack-plugin");
|
||||
|
||||
module.exports = {
|
||||
entry: "./main.js",
|
||||
output: {
|
||||
path: path.resolve(__dirname, "dist"),
|
||||
filename: "main.js",
|
||||
},
|
||||
plugins: [
|
||||
new HtmlWebpackPlugin({ title: "Graphite" }),
|
||||
new WasmPackPlugin({
|
||||
crateDirectory: path.resolve(__dirname, "..", "packages", "wasm-bindings"),
|
||||
outDir: path.resolve(__dirname, "pkg"),
|
||||
}),
|
||||
],
|
||||
mode: "development",
|
||||
devtool: "source-map",
|
||||
// experiments: {
|
||||
// syncWebAssembly: true,
|
||||
// },
|
||||
};
|
||||
Reference in New Issue
Block a user