15 lines
285 B
JavaScript
15 lines
285 B
JavaScript
const path = require("path")
|
|
const { defineConfig } = require('@vue/cli-service')
|
|
|
|
module.exports = defineConfig({
|
|
publicPath: '/',
|
|
transpileDependencies: true,
|
|
configureWebpack: {
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, 'src/'),
|
|
}
|
|
}
|
|
},
|
|
})
|