Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions rspack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ module.exports = defineConfig((env) => {

output: {
path: path.resolve('./js'),
filename: `${appName}-[name].js?v=[contenthash]`,
filename: `${appName}-[name].js`,
chunkFilename: `${appName}-[name].js?v=[contenthash]`,
// Set publicPath via __webpack_public_path__
publicPath: 'auto',
Expand Down Expand Up @@ -239,7 +239,7 @@ module.exports = defineConfig((env) => {

new CssExtractRspackPlugin({
filename: '../css/talk-[name].css',
chunkFilename: '../css/chunks/[id].chunk.css',
chunkFilename: '../css/chunks/[id].chunk.css?v=[contenthash]',
ignoreOrder: true,
}),

Expand Down
Loading