-
-
Notifications
You must be signed in to change notification settings - Fork 199
/
Copy pathvue.js
38 lines (32 loc) · 1.03 KB
/
vue.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
* This file is part of the Symfony Webpack Encore package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
'use strict';
/**
* @import WebpackConfig from '../WebpackConfig'
*/
const loaderFeatures = require('../features');
const applyOptionsCallback = require('../utils/apply-options-callback');
const getVueVersion = require('../utils/get-vue-version');
module.exports = {
/**
* @param {WebpackConfig} webpackConfig
* @returns {Array} of loaders to use for Vue files
*/
getLoaders(webpackConfig) {
const vueVersion = getVueVersion(webpackConfig);
loaderFeatures.ensurePackagesExistAndAreCorrectVersion('vue' + vueVersion);
const options = {};
return [
{
loader: require.resolve('vue-loader'),
options: applyOptionsCallback(webpackConfig.vueLoaderOptionsCallback, options)
}
];
}
};