SillyTavern/webpack.config.js
2024-10-16 23:11:13 +03:00

16 lines
333 B
JavaScript

/** @type {import('webpack').Configuration} */
export const publicLibConfig = {
mode: 'production',
entry: './public/lib.js',
cache: true,
devtool: 'source-map',
module: {},
experiments: {
outputModule: true,
},
output: {
filename: 'lib.js',
libraryTarget: 'module',
},
};