2017-05-17 00:00:56 +09:00
|
|
|
/**
|
|
|
|
* Theme color provider
|
|
|
|
*/
|
|
|
|
|
|
|
|
const constants = require('../../../src/const.json');
|
|
|
|
|
|
|
|
export default () => ({
|
|
|
|
enforce: 'pre',
|
2018-02-10 14:56:33 +09:00
|
|
|
test: /\.vue$/,
|
2017-05-17 00:00:56 +09:00
|
|
|
exclude: /node_modules/,
|
2018-02-15 19:59:07 +09:00
|
|
|
use: [/*{
|
|
|
|
loader: 'replace-string-loader',
|
|
|
|
options: {
|
|
|
|
search: /\$theme\-color\-foreground/g,
|
|
|
|
replace: constants.themeColorForeground
|
|
|
|
}
|
|
|
|
}, */{
|
|
|
|
loader: 'replace-string-loader',
|
|
|
|
options: {
|
|
|
|
search: '$theme-color',
|
|
|
|
replace: constants.themeColor,
|
|
|
|
flags: 'g'
|
|
|
|
}
|
|
|
|
}]
|
2017-05-17 00:00:56 +09:00
|
|
|
});
|