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 20:00:23 +09:00
|
|
|
use: [{
|
2018-02-15 19:59:07 +09:00
|
|
|
loader: 'replace-string-loader',
|
|
|
|
options: {
|
2018-02-15 20:00:23 +09:00
|
|
|
search: '$theme-color-foreground',
|
|
|
|
replace: constants.themeColorForeground,
|
|
|
|
flags: 'g'
|
2018-02-15 19:59:07 +09:00
|
|
|
}
|
2018-02-15 20:00:23 +09:00
|
|
|
}, {
|
2018-02-15 19:59:07 +09:00
|
|
|
loader: 'replace-string-loader',
|
|
|
|
options: {
|
|
|
|
search: '$theme-color',
|
|
|
|
replace: constants.themeColor,
|
|
|
|
flags: 'g'
|
|
|
|
}
|
|
|
|
}]
|
2017-05-17 00:00:56 +09:00
|
|
|
});
|