mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-15 06:02:57 +03:00
17 lines
362 B
JavaScript
17 lines
362 B
JavaScript
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',
|
|
},
|
|
}
|
|
})
|