mirror of
https://github.com/LingChair/LingChair-V0.git
synced 2025-12-08 18:15:50 +08:00
21 lines
476 B
JavaScript
21 lines
476 B
JavaScript
const path = require('path')
|
|
const { BannerPlugin } = require('webpack')
|
|
const HtmlWebpackPlugin = require('html-webpack-plugin')
|
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
|
|
|
|
module.exports = {
|
|
entry: '../build_cache/index.js',
|
|
output: {
|
|
filename: 'index.js',
|
|
path: path.resolve(__dirname, '../ling_chair_http'),
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.css$/i,
|
|
use: ['style-loader', 'css-loader'],
|
|
},
|
|
],
|
|
},
|
|
}
|