From 569cc7c7a0853b7c1b875586a31edad7d563ac8f Mon Sep 17 00:00:00 2001 From: Terncode Date: Thu, 6 Aug 2026 12:33:48 +0200 Subject: [PATCH] Change to build in dist --- webpack.common.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.common.mjs b/webpack.common.mjs index c528f42..e82d67b 100644 --- a/webpack.common.mjs +++ b/webpack.common.mjs @@ -13,7 +13,7 @@ const __dirname = path.dirname(__filename); const config = { context: path.join(__dirname, 'src'), output: { - path: path.resolve(__dirname, 'build', 'assets', 'scripts'), + path: path.resolve(__dirname, 'dist', 'assets', 'scripts'), filename: '[name].js', publicPath: '/assets/scripts/', },