mirror of
https://github.com/hodgef/simple-keyboard.git
synced 2026-08-02 00:00:07 +08:00
Fix webpack.config.demo.js: add CSS files to entry array
This commit is contained in:
@@ -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'
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user