Remove outdated webpack config

This commit is contained in:
Christopher Schleiden
2022-12-08 10:30:12 -08:00
parent 79033a6483
commit 48476c8b0f
-40
View File
@@ -56,44 +56,4 @@ const editorConfig = {
plugins: [new MonacoWebpackPlugin()],
};
// const workerConfig = {
// entry: "./src/service-worker/service-worker.ts",
// output: {
// path: path.resolve(__dirname, "dist"),
// filename: "./worker.js",
// },
// resolve: {
// fallback: {
// path: require.resolve("path-browserify"),
// },
// },
// module: {
// rules: [
// {
// test: /\.ts$/,
// exclude: /node_modules/,
// use: [
// {
// loader: "ts-loader",
// options: {
// compilerOptions: {
// sourceMap: true,
// },
// },
// },
// ],
// },
// {
// test: /\.css$/,
// use: ["style-loader", "css-loader"],
// },
// {
// test: /\.ttf$/,
// type: "asset/resource",
// },
// ],
// },
// plugins: [new MonacoWebpackPlugin()],
// };
module.exports = [editorConfig]