file-viewer-demo/vue.config.js

8 lines
251 B
JavaScript
Raw Normal View History

2024-01-29 06:17:29 +00:00
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
2024-01-30 07:57:29 +00:00
// 我们使用根节点,如果使用其他子目录,请设置具体的路径映射
publicPath: '/',
// 默认转换依赖
2024-01-29 06:17:29 +00:00
transpileDependencies: true
})