-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvue.config.js
60 lines (54 loc) · 1.36 KB
/
vue.config.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
const fs = require('fs');
const packageJson = fs.readFileSync('./package.json');
const version = JSON.parse(packageJson).version || 0;
const webpack = require('webpack');
const { BugsnagSourceMapUploaderPlugin } = require('webpack-bugsnag-plugins');
const marked = require('marked');
const renderer = new marked.Renderer();
module.exports = {
outputDir: 'docs/',
publicPath: process.env.NODE_ENV === 'production'
? '/tsm-editor/'
: '/',
css: {
loaderOptions: {
scss: {
prependData: '@import "~@/assets/scss/_variables.scss";',
},
},
},
configureWebpack: () => {
const plugins = [
new webpack.DefinePlugin({
'process.env': {
PACKAGE_VERSION: `"${version}"`,
},
}),
];
const module = {
rules: [{
test: /\.md$/,
use: [
{
loader: 'html-loader',
},
{
loader: 'markdown-loader',
options: {
pedantic: true,
renderer,
},
},
],
}],
};
if (process.env.NODE_ENV === 'production') {
plugins.push(new BugsnagSourceMapUploaderPlugin({
apiKey: '16d836736f8f6e23169eb3ed2393a37f',
appVersion: `${version}`,
}));
return { devtool: 'source-maps', plugins, module };
}
return { plugins, module };
},
};