mirror of
https://github.com/Buriburizaem0n/live2d.git
synced 2026-02-04 03:20:02 +00:00
12 lines
336 B
JavaScript
12 lines
336 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
entry: './waifu-tips.js', // 你的入口文件
|
|
output: {
|
|
filename: 'bundle.js', // 打包输出的文件名
|
|
path: path.resolve(__dirname, 'dist'), // 输出的文件目录
|
|
},
|
|
// mode: 'development', // 或 'production',根据你的需求
|
|
mode : 'production'
|
|
};
|