mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-10 07:52:23 +03:00
98c278b2bb
BREAKING: mixins are no longer exported from the index (and will likely be converted to hooks)
21 lines
432 B
JavaScript
21 lines
432 B
JavaScript
const { description } = require('./config/meta')
|
|
const head = require('./config/head')
|
|
const plugins = require('./config/plugins')
|
|
const themeConfig = require('./config/themeConfig')
|
|
const { resolve } = require('path')
|
|
|
|
module.exports = {
|
|
title: 'Vue Select',
|
|
description,
|
|
head,
|
|
plugins,
|
|
themeConfig,
|
|
configureWebpack: {
|
|
resolve: {
|
|
alias: {
|
|
'@': resolve(__dirname, '../../src'),
|
|
},
|
|
},
|
|
},
|
|
}
|