From 3dd1e91abb1a1eb9117dab6291515d21b518d99e Mon Sep 17 00:00:00 2001 From: Amor Kumar Date: Mon, 8 Jul 2024 11:30:57 -0400 Subject: [PATCH] Fix path --- webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index 6d72000..edb1f77 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -49,7 +49,7 @@ const blockScssPaths = glob }, {}); const styleScssPaths = glob - .sync('./assets/scss/index.scss', { posix: true, dotRelative: true }) + .sync('./assets/scss/_index.scss', { posix: true, dotRelative: true }) .reduce((acc, filePath) => { const entryKey = 'style'; acc[`css/${entryKey}`] = filePath;