Fix webpack.config.demo.js: add CSS files to entry array

This commit is contained in:
copilot-swe-agent[bot]
2026-07-28 02:38:21 +00:00
committed by GitHub
parent db5979ac2a
commit 9621f0d88e
+5 -1
View File
@@ -4,7 +4,11 @@ const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
mode: "development",
devtool: 'cheap-module-source-map',
entry: './src/demo/index.js',
entry: [
'./src/lib/components/css/Keyboard.css',
'./src/lib/components/css/CandidateBox.css',
'./src/demo/index.js'
],
output: {
filename: 'index.js'
},