advent22/ui/vue.config.js

8 lines
161 B
JavaScript
Raw Normal View History

2022-10-28 00:14:20 +00:00
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
2023-01-24 11:35:57 +00:00
transpileDependencies: true,
devServer: {
host: 'localhost',
}
2022-10-28 00:14:20 +00:00
})