playwright/tests/components/ct-vue-cli/vue.config.js

17 lines
362 B
JavaScript
Raw Normal View History

2022-03-12 02:46:11 +03:00
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true,
pages: {
index: {
entry: 'src/main.js',
template: 'public/index.html',
filename: 'index.html',
},
tests: {
entry: 'src/tests.js',
template: 'src/tests.html',
filename: 'tests.html',
},
}
})