fix: webpack 丢失 publicPath

This commit is contained in:
winixt 2024-01-24 21:21:09 +08:00
parent 5c7bdca371
commit eb960359d2

View File

@ -29,8 +29,7 @@ function genTranspileDepRegex(exclude) {
const depPath = join('node_modules', dep, '/'); const depPath = join('node_modules', dep, '/');
return require('node:os').platform().startsWith('win') ? depPath.replace(/\\/g, '\\\\') : depPath; return require('node:os').platform().startsWith('win') ? depPath.replace(/\\/g, '\\\\') : depPath;
} }
if (dep instanceof RegExp) if (dep instanceof RegExp) { return dep.source; }
return dep.source;
throw new Error('exclude only accepts an array of string or regular expressions'); throw new Error('exclude only accepts an array of string or regular expressions');
}); });
@ -75,6 +74,7 @@ export default async function getConfig({ api, cwd, config, env, entry = {}, mod
// --------------- output ----------- // --------------- output -----------
webpackConfig.output webpackConfig.output
.path(absoluteOutput) .path(absoluteOutput)
.publicPath(publicPath)
.filename('static/[name].[contenthash:8].js') .filename('static/[name].[contenthash:8].js')
.chunkFilename('static/[name].[contenthash:8].chunk.js') .chunkFilename('static/[name].[contenthash:8].chunk.js')
.assetModuleFilename('static/[name][hash:8][ext]'); .assetModuleFilename('static/[name][hash:8][ext]');
@ -131,8 +131,7 @@ export default async function getConfig({ api, cwd, config, env, entry = {}, mod
.test(/\.(js|mjs|jsx|ts|tsx)$/) .test(/\.(js|mjs|jsx|ts|tsx)$/)
.exclude.add((filepath) => { .exclude.add((filepath) => {
// always transpile js in vue files // always transpile js in vue files
if (/(\.vue|\.jsx)$/.test(filepath)) if (/(\.vue|\.jsx)$/.test(filepath)) { return false; }
return false;
// Don't transpile node_modules // Don't transpile node_modules
return /node_modules/.test(filepath); return /node_modules/.test(filepath);
@ -151,8 +150,7 @@ export default async function getConfig({ api, cwd, config, env, entry = {}, mod
.include.add(/node_modules/) .include.add(/node_modules/)
.end() .end()
.exclude.add((filepath) => { .exclude.add((filepath) => {
if (transpileDepRegex && transpileDepRegex.test(filepath)) if (transpileDepRegex && transpileDepRegex.test(filepath)) { return true; }
return true;
return false; return false;
}) })
@ -192,11 +190,9 @@ export default async function getConfig({ api, cwd, config, env, entry = {}, mod
existsSync(join(cwd, 'public')) && { existsSync(join(cwd, 'public')) && {
from: join(cwd, 'public'), from: join(cwd, 'public'),
filter: (resourcePath) => { filter: (resourcePath) => {
if (resourcePath.includes('.DS_Store')) if (resourcePath.includes('.DS_Store')) { return false; }
return false;
if (publicCopyIgnore.includes(resourcePath)) if (publicCopyIgnore.includes(resourcePath)) { return false; }
return false;
return true; return true;
}, },