11 lines
204 B
JavaScript
11 lines
204 B
JavaScript
const { defineConfig } = require('@vue/cli-service')
|
|
module.exports = defineConfig({
|
|
transpileDependencies: true,
|
|
pages: {
|
|
index: {
|
|
entry: 'src/main.js',
|
|
title: 'irandom'
|
|
}
|
|
}
|
|
})
|