wulkanowy.github.io/vue.config.js

22 lines
393 B
JavaScript
Raw Normal View History

2020-02-02 13:07:41 +01:00
const routes = require('./src/routes');
2019-02-24 18:22:51 +01:00
module.exports = {
2019-12-07 14:18:08 +01:00
publicPath: '/',
2020-02-02 13:07:41 +01:00
pluginOptions: {
sitemap: {
baseURL: 'https://wulkanowy.github.io',
outputDir: 'dist/',
pretty: true,
routes,
},
},
2019-12-07 14:18:08 +01:00
chainWebpack: (config) => {
config.module
.rule('md')
.test(/\.md$/)
.use('raw-loader')
.loader('raw-loader')
.end();
},
2019-02-24 18:22:51 +01:00
};