vue.config.js 355 B

12345678910111213
  1. module.exports = {
  2. publicPath: './', // 相对于 HTML 页面(目录相同)
  3. // 添加web worker loader
  4. configureWebpack: config => {
  5. config.module.rules.push({
  6. test: /\.worker\.js$/,
  7. use: {
  8. loader: 'worker-loader',
  9. options: { inline: true }
  10. }
  11. })
  12. },
  13. }